1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

Make sleep() __fastcall__

git-svn-id: svn://svn.cc65.org/cc65/trunk@2212 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-06-12 09:13:35 +00:00
parent 7c29033b58
commit 86881f6b38

View File

@ -12,7 +12,7 @@
unsigned sleep (unsigned wait) unsigned __fastcall__ sleep (unsigned wait)
{ {
clock_t goal = clock () + ((clock_t) wait) * CLOCKS_PER_SEC; clock_t goal = clock () + ((clock_t) wait) * CLOCKS_PER_SEC;
while ((long) (goal - clock ()) > 0) ; while ((long) (goal - clock ()) > 0) ;