gdb-2.4+.aux.coff

This commit is contained in:
gdb-2.4+.aux.coff
1988-01-16 04:39:57 +00:00
committed by Pedro Alves
commit 7b4ac7e1ed
118 changed files with 48217 additions and 0 deletions

21
gdb/kdb-start.c Normal file
View File

@@ -0,0 +1,21 @@
#include "defs.h"
#include "param.h"
static char *args[] = {"kdb", "kdb-symbols", 0};
static char *environment[] = {0};
char **environ;
start ()
{
#ifdef NAMES_HAVE_UNDERSCORE
INIT_STACK (_kdb_stack_beg, _kdb_stack_end);
#else /* not NAMES_HAVE_UNDERSCORE */
INIT_STACK (kdb_stack_beg, kdb_stack_end);
#endif /* not NAMES_HAVE_UNDERSCORE */
environ = environment;
main (2, args, environment);
}