home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / gdb-4.12.tar.gz / gdb-4.12.tar / gdb-4.12 / include / aout / stab_gnu.h < prev    next >
C/C++ Source or Header  |  1994-02-03  |  820b  |  37 lines

  1. #ifndef __GNU_STAB__
  2.  
  3. /* Indicate the GNU stab.h is in use.  */
  4.  
  5. #define __GNU_STAB__
  6.  
  7. #define __define_stab(NAME, CODE, STRING) NAME=CODE,
  8.  
  9. enum __stab_debug_code
  10. {
  11. #include "aout/stab.def"
  12. LAST_UNUSED_STAB_CODE
  13. };
  14.  
  15. #undef __define_stab
  16.  
  17. /* Definitions of "desc" field for N_SO stabs in Solaris2.  */
  18.  
  19. #define    N_SO_AS        1
  20. #define    N_SO_C        2
  21. #define    N_SO_ANSI_C    3
  22. #define    N_SO_CC        4    /* C++ */
  23. #define    N_SO_FORTRAN    5
  24. #define    N_SO_PASCAL    6
  25.  
  26. /* Solaris2: Floating point type values in basic types.  */
  27.  
  28. #define    NF_NONE        0
  29. #define    NF_SINGLE    1    /* IEEE 32-bit */
  30. #define    NF_DOUBLE    2    /* IEEE 64-bit */
  31. #define    NF_COMPLEX    3    /* Fortran complex */
  32. #define    NF_COMPLEX16    4    /* Fortran double complex */
  33. #define    NF_COMPLEX32    5    /* Fortran complex*16 */
  34. #define    NF_LDOUBLE    6    /* Long double (whatever that is) */
  35.  
  36. #endif /* __GNU_STAB_ */
  37.