1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-25 22:18:27 +00:00

Use && and || in preprocessor #if statements. Other minor changes.

git-svn-id: svn://svn.cc65.org/cc65/trunk@866 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-09-08 14:39:01 +00:00
parent def6300556
commit 6e29f555d2
5 changed files with 46 additions and 80 deletions
+8 -18
View File
@@ -54,27 +54,17 @@
#ifndef _STDARG_H
#if !defined(_STDARG_H)
# include <stdarg.h>
#endif
/* Read the CBM file if we're compiling for a CBM machine */
#ifdef __CBM__
# ifndef _CBM_H
# include <cbm.h>
# endif
#endif
#ifdef __APPLE2__
# ifndef _APPLE2_H
# include <apple2.h>
# endif
#endif
#ifdef __ATARI__
# ifndef _ATARI_H
# include <atari.h>
# endif
/* Include the correct machine specific file */
#if defined(__CBM__) && !defined(_CBM_H)
# include <cbm.h>
#elif defined(__APPLE2__) && !defined(_APPLE2_H)
# include <apple2.h>
#elif defined(__ATARI__) && !defined(_ATARI_H)
# include <atari.h>
#endif