Skip to content

Commit

Permalink
Merge pull request cesanta#429 from AlexAltea/master
Browse files Browse the repository at this point in the history
Added #define's for deprecated POSIX names
  • Loading branch information
cpq committed Nov 1, 2014
2 parents 632b3a3 + e098a72 commit 7d236d7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 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 Down

0 comments on commit 7d236d7

Please sign in to comment.