|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - download
Length: 409 (0x199) Types: TextFile Names: »kdb-start.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/gdb/kdb-start.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); }