Skip to content
Snippets Groups Projects
Commit f366de70 authored by deuce's avatar deuce
Browse files

Include sys/types.h and sys/stat.h for mkdir() prototype.

parent 6c889921
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,8 @@ extern "C" {
#if defined(__unix__)
#define ALLFILES "*" /* matches all files in a directory */
#include <sys/types.h>
#include <sys/stat.h>
#include <glob.h> /* POSIX.2 directory pattern matching function */
#define MKDIR(dir) mkdir(dir,0777)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment