|
|
@ -1,4 +1,4 @@
|
|
|
|
/* $Id: sysfunc.c,v 1.14 2003/05/19 21:55:55 stpohle Exp $
|
|
|
|
/* $Id: sysfunc.c,v 1.15 2003/05/20 18:05:30 stpohle Exp $
|
|
|
|
sysfunc.c - this file hold some routines for the system functions..
|
|
|
|
sysfunc.c - this file hold some routines for the system functions..
|
|
|
|
like d_delay
|
|
|
|
like d_delay
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -13,7 +13,7 @@ void
|
|
|
|
s_delay (int ms)
|
|
|
|
s_delay (int ms)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef _WIN32
|
|
|
|
sleep (ms); /* i hope this works on windows.. on MSVC it
|
|
|
|
Sleep (ms); /* i hope this works on windows.. on MSVC it
|
|
|
|
should but with MINGW i don't know yet */
|
|
|
|
should but with MINGW i don't know yet */
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
fd_set selectset;
|
|
|
|
fd_set selectset;
|
|
|
|