mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
22 lines
409 B
C
22 lines
409 B
C
|
#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);
|
||
|
}
|