diff lib-src/ntlib.c @ 31081:1fd32e8a2fad

(sleep): Make argument unsigned long.
author Andrew Innes <andrewi@gnu.org>
date Tue, 22 Aug 2000 21:22:20 +0000
parents b58a79fe0af2
children 23a1cea22d13
line wrap: on
line diff
--- a/lib-src/ntlib.c	Tue Aug 22 21:20:07 2000 +0000
+++ b/lib-src/ntlib.c	Tue Aug 22 21:22:20 2000 +0000
@@ -35,7 +35,7 @@
    would necessitate including windows.h in the files that used it.
    This is much easier.  */
 void
-sleep(int seconds)
+sleep(unsigned long seconds)
 {
   Sleep (seconds * 1000);
 }