mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
Fixed inclusion order
git-svn-id: svn://svn.cc65.org/cc65/trunk@2918 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
175cba5701
commit
3846e8c536
@ -37,19 +37,12 @@
|
|||||||
|
|
||||||
|
|
||||||
/* Check for errors */
|
/* Check for errors */
|
||||||
#if !defined(__APPLE2__)
|
#if !defined(__APPLE2__) && !defined(__APPLE2ENH__)
|
||||||
# error This module may only be used when compiling for the Apple ][!
|
# error This module may only be used when compiling for the Apple ][!
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Load the system specific files here, if needed */
|
|
||||||
#if defined(__APPLE2ENH__) && !defined(_APPLEENH_H)
|
|
||||||
# include <apple2enh.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Data */
|
/* Data */
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
@ -42,6 +42,13 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* If not already done, include the apple2.h header file */
|
||||||
|
#if !defined(_APPLE2_H)
|
||||||
|
# include <apple2enh.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/* Data */
|
/* Data */
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user