diff options
author | Andrew Innes <andrewi@gnu.org> | 1998-06-01 14:01:14 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1998-06-01 14:01:14 +0000 |
commit | 3ebae83afda45be3be3d9adef0cea2cb0b73fe12 (patch) | |
tree | 14b0fa39ebb933315681141da15f7a191318f858 /lib-src | |
parent | af6805fa454de07a2c18d7e3f434f4ea4dcffbe5 (diff) | |
download | emacs-3ebae83afda45be3be3d9adef0cea2cb0b73fe12.tar.gz |
Undefine _WINSOCKAPI_.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ntlib.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h index 385db6dba64..2a7ccbb79b7 100644 --- a/lib-src/ntlib.h +++ b/lib-src/ntlib.h @@ -51,7 +51,7 @@ int fchown (int fd, int uid, int gid); #define bcmp(a, b, l) memcmp(a, b, l) #endif -/* redirect or undo interceptions by config.h */ +/* redirect or undo interceptions created by config.h */ #undef access #define access _access #undef chdir @@ -111,4 +111,7 @@ int fchown (int fd, int uid, int gid); #define index strchr #define rindex strrchr +/* Make standard winsock definitions available if needed. */ +#undef _WINSOCKAPI_ + /* end of ntlib.h */ |