home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / gcc / ixemulsrc.lha / ixemul / stack / a4.h next >
C/C++ Source or Header  |  1996-12-11  |  202b  |  15 lines

  1. #ifndef _A4_H_
  2. #define _A4_H_
  3.  
  4. #ifdef BASEREL
  5.   #define A4(x) "a4@(" #x ":W)"
  6. #else
  7.   #ifdef LBASEREL
  8.     #define A4(x) "a4@(" #x ":L)"
  9.   #else
  10.     #define A4(x) #x
  11.   #endif
  12. #endif
  13.  
  14. #endif /* _A4_H_ */
  15.