]> git.eshelyaron.com Git - emacs.git/commitdiff
(WIN32): Remove unnecessary definition.
authorAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:24:06 +0000 (21:24 +0000)
committerAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:24:06 +0000 (21:24 +0000)
(sleep): Make argument unsigned long.
(_WINSOCK_H): Undefine so normal winsock definitions can be used.

lib-src/ntlib.h

index 2a7ccbb79b721279c7816e87f001d7ff8fb87349..e6bce58074e2aeeddb0625a131017a51df386d74 100644 (file)
@@ -20,8 +20,6 @@
 
 */
 
-#define WIN32
-
 #include <pwd.h>
 #include <malloc.h>
 
@@ -34,7 +32,7 @@
 #ifdef sleep
 #undef sleep
 #endif
-void sleep(int seconds);
+void sleep(unsigned long seconds);
 char *getwd (char *dir);
 int getppid(void);
 char * getlogin ();
@@ -113,5 +111,6 @@ int fchown (int fd, int uid, int gid);
 
 /* Make standard winsock definitions available if needed.  */
 #undef _WINSOCKAPI_
+#undef _WINSOCK_H
 
 /* end of ntlib.h */