summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>2000-08-22 21:22:20 +0000
committerAndrew Innes <andrewi@gnu.org>2000-08-22 21:22:20 +0000
commite9f8990f87435d6ab7866dcad1ce986a7b7da1a7 (patch)
tree457c27e9a1cd35d4794647dde807063273a9d24c /lib-src
parentac606557ab88005e29fcc8a12141f71a6a413c94 (diff)
downloademacs-e9f8990f87435d6ab7866dcad1ce986a7b7da1a7.tar.gz
(sleep): Make argument unsigned long.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ntlib.c2
1 files changed, 1 insertions, 1 deletions
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);
}