diff options
Diffstat (limited to 'ldmicro/ldinterpret.c')
-rw-r--r-- | ldmicro/ldinterpret.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ldmicro/ldinterpret.c b/ldmicro/ldinterpret.c index 6f18d44..a37ff09 100644 --- a/ldmicro/ldinterpret.c +++ b/ldmicro/ldinterpret.c @@ -36,7 +36,7 @@ //----------------------------------------------------------------------------- #include <stdio.h> #include <ctype.h> -#include "linuxUI.h" +#include <unistd.h> #define INTCODE_H_CONSTANTS_ONLY #include "intcode.h" @@ -373,7 +373,7 @@ int main(int argc, char **argv) // XXX, nonportable; replace with whatever timing functions are // available on your target. - Sleep(10); + usleep(10000); } return 0; |