]> git.eshelyaron.com Git - emacs.git/commitdiff
(sleep): Make argument unsigned long.
authorAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:22:20 +0000 (21:22 +0000)
committerAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:22:20 +0000 (21:22 +0000)
lib-src/ntlib.c

index 110a8ccb0020244ea756760280de6e9b29ac8af7..3e2caf508656a43c1991914552610486d2181017 100644 (file)
@@ -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);
 }