add other wrapping for Windows function (fileno and fdopen)

SVN revision: 42521
This commit is contained in:
Vincent Torri 2009-09-16 18:05:04 +00:00
parent 02adb06f5a
commit 98817e4ed3
1 changed files with 2 additions and 0 deletions

View File

@ -152,6 +152,8 @@ typedef unsigned long gid_t;
# define mkdir(p,m) _mkdir(p)
# define lstat(f,s) _stat((f),(s))
# define strdup(s) _strdup(s)
# define fileno(f) _fileno(f)
# define fdopen(fd,m) _fdopen((fd),(m))
# endif
#endif