1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-15 21:27:43 +00:00

sleep.c doesn't compile on platforms without a clock function

git-svn-id: svn://svn.cc65.org/cc65/trunk@2218 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-06-12 18:17:46 +00:00
parent 286a9e3f8a
commit a8534fbb7c

View File

@@ -13,12 +13,15 @@
/* We cannot implement this function without a working clock function */
#if defined(CLOCKS_PER_SEC)
unsigned __fastcall__ sleep (unsigned wait)
{
clock_t goal = clock () + ((clock_t) wait) * CLOCKS_PER_SEC;
while ((long) (goal - clock ()) > 0) ;
return 0;
}
#endif