mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
gdb-2.4+.aux.coff
This commit is contained in:
21
gdb/kdb-start.c
Normal file
21
gdb/kdb-start.c
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user