diff options
Diffstat (limited to 'src/unix/posix.h')
-rw-r--r-- | src/unix/posix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/unix/posix.h b/src/unix/posix.h index f6f2e2353..6980c36f1 100644 --- a/src/unix/posix.h +++ b/src/unix/posix.h @@ -23,4 +23,7 @@ #define p_setenv(n,v,o) setenv(n,v,o) #define p_inet_pton(a, b, c) inet_pton(a, b, c) +/* see win32/posix.h for explanation about why this exists */ +#define p_lstat_posixly(p,b) lstat(p,b) + #endif |