1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 17:30:50 +00:00

Fixed a problem

git-svn-id: svn://svn.cc65.org/cc65/trunk@3092 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-06-04 21:25:54 +00:00
parent 64fdaa4629
commit f0b8ea1e14

View File

@ -59,17 +59,17 @@
#endif
/* Include the correct machine specific file */
#if defined(__APPLE2__) && !defined(_APPLE2_H)
#if defined(__APPLE2__)
# include <apple2.h>
#elif defined(__APPLE2ENH__) && !defined(_APPLE2ENH_H)
#elif defined(__APPLE2ENH__)
# include <apple2enh.h>
#elif defined(__ATARI__) && !defined(_ATARI_H)
#elif defined(__ATARI__)
# include <atari.h>
#elif defined(__ATMOS__) && !defined(_ATMOS_H)
#elif defined(__ATMOS__)
# include <atmos.h>
#elif defined(__CBM__) && !defined(_CBM_H)
#elif defined(__CBM__)
# include <cbm.h>
#elif defined(__NES__) && !defined(_NES_H)
#elif defined(__NES__)
# include <nes.h>
#else
# error "Unknown platform in conio.h"