zig/libc/include/generic-glibc/stab.h

17 lines
263 B
C
Raw Normal View History

2019-03-05 11:15:53 +08:00
#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 <bits/stab.def>
LAST_UNUSED_STAB_CODE
};
#undef __define_stab
2019-03-08 01:16:10 +08:00
#endif /* __GNU_STAB_ */