From: cuz Date: Sat, 13 Mar 2004 23:17:19 +0000 (+0000) Subject: Minor fixes for the new apple2enh target X-Git-Tag: V2.12.0~898 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=847e1c62eb0b5b998fc539a64cdcc2527eaec73f;p=cc65 Minor fixes for the new apple2enh target git-svn-id: svn://svn.cc65.org/cc65/trunk@2924 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/apple2enh.h b/include/apple2enh.h index 914669874..5185fd693 100644 --- a/include/apple2enh.h +++ b/include/apple2enh.h @@ -44,7 +44,7 @@ /* If not already done, include the apple2.h header file */ #if !defined(_APPLE2_H) -# include +# include #endif diff --git a/include/conio.h b/include/conio.h index cb7037e9f..48dc535c2 100644 --- a/include/conio.h +++ b/include/conio.h @@ -6,10 +6,10 @@ /* */ /* */ /* */ -/* (C) 1998-2000 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ -/* EMail: uz@musoftware.de */ +/* (C) 1998-2004 Ullrich von Bassewitz */ +/* Römerstraße 52 */ +/* D-70794 Filderstadt */ +/* EMail: uz@cc65.org */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -61,6 +61,8 @@ /* Include the correct machine specific file */ #if defined(__APPLE2__) && !defined(_APPLE2_H) # include +#elif defined(__APPLE2ENH__) && !defined(_APPLE2ENH_H) +# include #elif defined(__ATARI__) && !defined(_ATARI_H) # include #elif defined(__ATMOS__) && !defined(_ATMOS_H) @@ -69,6 +71,8 @@ # include #elif defined(__NES__) && !defined(_NES_H) # include +#else +# error "Unknown platform in conio.h" #endif