home *** CD-ROM | disk | FTP | other *** search
/ Zodiac Super OZ / MEDIADEPOT.ISO / FILES / 16 / FREEDOS.ZIP / FD_A4PRE.ZIP / SOURCE / MSGLIB.ZIP / freedos / src / include / algnbyte.h next >
Text File  |  1995-04-19  |  277b  |  11 lines

  1. /* one byte alignment */
  2. /* do not use with Micro-C ! */
  3.  
  4. #if defined(_MSC_VER) || defined(_QC) || defined(__WATCOM__)
  5.     #pragma pack(1)
  6. #elif defined(__ZTC__)
  7.     #pragma ZTC align 1
  8. #elif defined(__TURBOC__) && (__TURBOC__ > 0x202)
  9.     #pragma option -a-
  10. #endif
  11.