Make it compile with mingw32 again

This commit is contained in:
Dale Weiler 2013-10-11 04:58:49 -04:00
parent dab528acda
commit 34c18ab860
2 changed files with 11 additions and 0 deletions

9
ansi.c
View file

@ -157,7 +157,16 @@ long platform_ftell(FILE *stream) {
}
int platform_mkdir(const char *path, int mode) {
/*
* For some reason mingw32 just doesn't have a correct mkdir impl
* so we handle that here.
*/
# ifdef _WIN32
(void)mode;
return mkdir(path);
# else
return mkdir(path, mode);
# endif /*!_WIN32*/
}
DIR *platform_opendir(const char *path) {

View file

@ -23,12 +23,14 @@
*/
#include <string.h>
#include <stdlib.h>
#include <sys/stat.h>
#include "gmqcc.h"
#include "lexer.h"
#include "platform.h"
#define HT_MACROS 1024
typedef struct {
bool on;
bool was_on;