mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
Made compatible with the Apple ][ machines, but without timing (like mandelbrot).
git-svn-id: svn://svn.cc65.org/cc65/trunk@4315 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
a84229dcaf
commit
2b7e9ecebc
@ -11,6 +11,13 @@
|
||||
#include <conio.h>
|
||||
|
||||
|
||||
/* Workaround missing clock stuff */
|
||||
#if defined(__APPLE2__) || defined(__APPLE2ENH__)
|
||||
# define clock() 0
|
||||
# define CLOCKS_PER_SEC 1
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Data */
|
||||
|
Loading…
Reference in New Issue
Block a user