gdb-2.4+.aux.coff
[binutils-gdb.git] / gdb / kdb-start.c
1 #include "defs.h"
2 #include "param.h"
3
4 static char *args[] = {"kdb", "kdb-symbols", 0};
5
6 static char *environment[] = {0};
7
8 char **environ;
9
10 start ()
11 {
12 #ifdef NAMES_HAVE_UNDERSCORE
13 INIT_STACK (_kdb_stack_beg, _kdb_stack_end);
14 #else /* not NAMES_HAVE_UNDERSCORE */
15 INIT_STACK (kdb_stack_beg, kdb_stack_end);
16 #endif /* not NAMES_HAVE_UNDERSCORE */
17
18 environ = environment;
19
20 main (2, args, environment);
21 }