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
1 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,13 @@
|
||||||
#include <conio.h>
|
#include <conio.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Workaround missing clock stuff */
|
||||||
|
#if defined(__APPLE2__) || defined(__APPLE2ENH__)
|
||||||
|
# define clock() 0
|
||||||
|
# define CLOCKS_PER_SEC 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Data */
|
/* Data */
|
||||||
|
|
Loading…
Add table
Reference in a new issue