home *** CD-ROM | disk | FTP | other *** search
/ MACD 4 / MACD4.iso / Emulatory / AROS / include / aros / amiga.h < prev    next >
Encoding:
C/C++ Source or Header  |  1978-03-06  |  763 b   |  32 lines

  1. #ifndef AROS_AMIGA_H
  2. #define AROS_AMIGA_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: amiga.h,v 1.4 1996/10/29 03:02:35 aros Exp $
  7.     $Log: amiga.h,v $
  8.     Revision 1.4  1996/10/29 03:02:35  aros
  9.     Added __AROS_SLIB_ENTRY without leading underscore
  10.  
  11.     Revision 1.3  1996/10/21 20:58:57  aros
  12.     GCC has string.h too
  13.  
  14.     Revision 1.2  1996/09/13 17:54:34  digulla
  15.     Overworked the way systems are recognised and added three sample systems
  16.  
  17.  
  18.     Desc: Amiga-specific things
  19.     Lang: english
  20. */
  21.  
  22. #if defined(__SASC) || defined(__GNUC__)
  23. #   define HAS_STRING_H
  24. #endif
  25.  
  26. #define __AROS_STRUCTURE_ALIGNMENT  8
  27.  
  28. /* To handle the slightly different procedure naming */
  29. #define __AROS_SLIB_ENTRY(n,s)          s##_##n
  30.  
  31. #endif /* AROS_AMIGA_H */
  32.