Mercurial > emacs
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 31080:7ae519dba237 | 31081:1fd32e8a2fad |
|---|---|
| 33 | 33 |
| 34 /* Emulate sleep...we could have done this with a define, but that | 34 /* Emulate sleep...we could have done this with a define, but that |
| 35 would necessitate including windows.h in the files that used it. | 35 would necessitate including windows.h in the files that used it. |
| 36 This is much easier. */ | 36 This is much easier. */ |
| 37 void | 37 void |
| 38 sleep(int seconds) | 38 sleep(unsigned long seconds) |
| 39 { | 39 { |
| 40 Sleep (seconds * 1000); | 40 Sleep (seconds * 1000); |
| 41 } | 41 } |
| 42 | 42 |
| 43 /* Get the current working directory. */ | 43 /* Get the current working directory. */ |
