diff options
author | Steve Chamberlain <sac@cygnus> | 1991-12-01 02:46:04 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-12-01 02:46:04 +0000 |
commit | d289576d7fdbd3948a2308ef395a66690151d8b0 (patch) | |
tree | bf3dcaba4dfc2e05ca5f3a6eac5ee9822bb5abb2 /include/aout | |
parent | 0227e9187ba62196cafdb14b5306d93e5cf3ed00 (diff) | |
download | gdb-d289576d7fdbd3948a2308ef395a66690151d8b0.zip gdb-d289576d7fdbd3948a2308ef395a66690151d8b0.tar.gz gdb-d289576d7fdbd3948a2308ef395a66690151d8b0.tar.bz2 |
Initial revision
Diffstat (limited to 'include/aout')
-rw-r--r-- | include/aout/stab_gnu.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/aout/stab_gnu.h b/include/aout/stab_gnu.h new file mode 100644 index 0000000..80bd594 --- /dev/null +++ b/include/aout/stab_gnu.h @@ -0,0 +1,17 @@ +#ifndef __GNU_STAB__ + +/* Indicate the GNU stab.h is in use. */ + +#define __GNU_STAB__ + +#define __define_stab(NAME, CODE, STRING) NAME=CODE, + +enum __stab_debug_code +{ +#include "stab.def" +LAST_UNUSED_STAB_CODE +}; + +#undef __define_stab + +#endif /* __GNU_STAB_ */ |