changeset 31081:1fd32e8a2fad

(sleep): Make argument unsigned long.
author Andrew Innes <andrewi@gnu.org>
date Tue, 22 Aug 2000 21:22:20 +0000
parents 7ae519dba237
children 9865d23be9e7
files lib-src/ntlib.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);
 }