Skip to content

Commit

Permalink
- changed FAR define to only define it empty in case __far does not e…
Browse files Browse the repository at this point in the history
…xist (Gunther Nikl)
  • Loading branch information
jens-maus committed Apr 8, 2015
1 parent 41685d7 commit d3a6b0c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions SDI_compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/* Includeheader
Name: SDI_compiler.h
Versionstring: $VER: SDI_compiler.h 1.35 (03.03.2011)
Versionstring: $VER: SDI_compiler.h 1.36 (30.03.2015)
Authors: Dirk Stoecker, Jens Maus
Distribution: PD
Project page: http://sf.net/p/adtools/code/HEAD/tree/trunk/sdi/
Expand Down Expand Up @@ -61,6 +61,8 @@
1.34 26.07.10 : adapted IPTR and SIPTR definitions as the latest MorphOS SDK already
contains them. (tboeckel)
1.35 03.03.11 : fixed AROS macros for m68k (Jason McMullan)
1.36 30.03.15 : changed FAR define to only define it empty in case __far does not
exist (Gunther Nikl)
*/

Expand Down Expand Up @@ -159,7 +161,9 @@
#define INTERRUPT
#define CHIP
#endif
#define FAR
#if !defined(__far)
#define FAR /* __far NOT supported! */
#endif
#define NEAR
#elif defined(_DCC)
#define REG(reg,arg) __##reg arg
Expand Down

0 comments on commit d3a6b0c

Please sign in to comment.