Have __APPLE2ENH__ imply __APPLE2__ and __ATARIXL__ imply __ATARI__.

This commit is contained in:
Oliver Schmidt
2013-06-17 21:34:08 +02:00
parent 92ad74a49f
commit 83280e1ee2
16 changed files with 30 additions and 26 deletions

View File

@@ -28,7 +28,7 @@
#define divfp(_a,_b) ((((signed long)_a)<<fpshift)/(_b))
/* Workaround missing clock stuff */
#if defined(__APPLE2__) || defined(__APPLE2ENH__)
#ifdef __APPLE2__
# define clock() 0
# define CLK_TCK 1
#endif

View File

@@ -12,7 +12,7 @@
/* Workaround missing clock stuff */
#if defined(__APPLE2__) || defined(__APPLE2ENH__)
#ifdef __APPLE2__
# define clock() 0
# define CLOCKS_PER_SEC 1
#endif