diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-09 12:31:35 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-10-09 12:31:35 -0400 |
commit | 8aaad5e0afc0397953572ddf7f82ca2e9e74d7c5 (patch) | |
tree | 479dc9f362b66d5dbca938efd1f092c92ee07d28 /WWW | |
parent | 2684b3555ba64de427154d12a69b532907756c2f (diff) | |
download | lynx-snapshots-8aaad5e0afc0397953572ddf7f82ca2e9e74d7c5.tar.gz |
snapshot of project "lynx", label v2-8-8dev_16n
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 7b834fa0..8e713520 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.116 2013/10/07 13:57:20 tom Exp $ + * $LynxId: HTUtils.h,v 1.117 2013/10/08 20:13:41 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -228,7 +228,11 @@ extern off_t LYatoll(const char *value); #if defined(DECL_SLEEP) #undef sleep /* 1998/06/23 (Tue) 16:54:53 */ +# if defined(__MINGW32__) +# define sleep(n) Sleep((n)*100) +# else extern void sleep(unsigned __seconds); +# endif #endif #define popen _popen |