home *** CD-ROM | disk | FTP | other *** search
/ Supremacy 1 / Supremacy-1.iso / UTILS / S-T / STING.ZIP / STING / DEV-KIT / HEADER / PORTAB.H < prev    next >
C/C++ Source or Header  |  1997-05-03  |  305b  |  19 lines

  1. /*
  2.  *   Header file for making the STinG header files work 
  3.  *      with various compilers.
  4.  *
  5.  *   Just  #include "portab.h"  before #include'ing the 
  6.  *      other header files ...
  7.  *
  8.  */
  9.  
  10. #ifndef __PUREC__
  11.  
  12. #ifdef LATTICE
  13. #define  cdecl  __stdargs
  14. #else
  15. #define  cdecl
  16. #endif
  17.  
  18. #endif
  19.