Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/valenok/mongoose
Browse files Browse the repository at this point in the history
  • Loading branch information
cpq committed Nov 7, 2014
2 parents 9981b99 + f2b1376 commit e7ac602
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions mongoose.c
Original file line number Diff line number Diff line change
Expand Up @@ -1247,10 +1247,15 @@ void ns_mgr_free(struct ns_mgr *s) {
#define fopen(x, y) mg_fopen((x), (y))
#define open(x, y, z) mg_open((x), (y), (z))
#define close(x) _close(x)
#define fileno(x) _fileno(x)
#define lseek(x, y, z) _lseeki64((x), (y), (z))
#define read(x, y, z) _read((x), (y), (z))
#define write(x, y, z) _write((x), (y), (z))
#define popen(x, y) _popen((x), (y))
#define pclose(x) _pclose(x)
#define mkdir(x, y) _mkdir(x)
#define rmdir(x) _rmdir(x)
#define strdup(x) _strdup(x)
#ifndef __func__
#define STRX(x) #x
#define STR(x) STRX(x)
Expand All @@ -1269,8 +1274,13 @@ typedef HANDLE process_id_t;

#else ////////////// UNIX specific defines and includes

#if !defined(MONGOOSE_NO_FILESYSTEM) &&\
(!defined(MONGOOSE_NO_DAV) || !defined(MONGOOSE_NO_DIRECTORY_LISTING))
#include <dirent.h>
#endif
#if !defined(MONGOOSE_NO_FILESYSTEM) && !defined(MONGOOSE_NO_DL)
#include <dlfcn.h>
#endif
#include <inttypes.h>
#include <pwd.h>
#define O_BINARY 0
Expand Down

0 comments on commit e7ac602

Please sign in to comment.