From c09c2c99950c90260b18d2024eb80ba4ebf5a912 Mon Sep 17 00:00:00 2001
From: Andrew Innes <andrewi@gnu.org>
Date: Tue, 22 Aug 2000 21:22:20 +0000
Subject: (sleep): Make argument unsigned long.

---
 lib-src/ntlib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'lib-src')

diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index 110a8ccb002..3e2caf50865 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA.
    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);
 }
-- 
cgit v1.2.1