view stab.h @ 590:18ffc34ebf5d

Replace old "DEBUG=echo" with "VERBOSE=1", which shows the command lines (properly escaped so you can cut and paste to re-run them) while also executing each one. For the old "just show the commands, don't execute them" use "VERBOSE=debug".
author Rob Landley <rob@landley.net>
date Sun, 06 Apr 2008 17:02:18 -0500
parents e82d6bc5f24d
children
line wrap: on
line source

#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_ */