home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / bytetypes.h < prev    next >
Text File  |  1993-09-28  |  740b  |  36 lines

  1. /* These should come from genemit */
  2.  
  3. /* Use __signed__ in case compiling with -traditional.  */
  4.  
  5. typedef __signed__ char QItype;
  6. typedef unsigned char QUtype;
  7. typedef __signed__ short int HItype;
  8. typedef unsigned short int HUtype;
  9. typedef __signed__ long int SItype;
  10. typedef unsigned long int SUtype;
  11. typedef __signed__ long long int DItype;
  12. typedef unsigned long long int DUtype;
  13. typedef float SFtype;
  14. typedef double DFtype;
  15. typedef long double XFtype;
  16. typedef char *Ptype;
  17. typedef int Ttype;
  18.  
  19.  
  20. typedef union stacktype
  21. {
  22.   QItype QIval;
  23.   QUtype QUval;
  24.   HItype HIval;
  25.   HUtype HUval;
  26.   SItype SIval;
  27.   SUtype SUval;
  28.   DItype DIval;
  29.   DUtype DUval;
  30.   SFtype SFval;
  31.   DFtype DFval;
  32.   XFtype XFval;
  33.   Ptype Pval;
  34.   Ttype Tval;
  35. } stacktype;
  36.