DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦84d2e5ce6⟧ TextFile

    Length: 409 (0x199)
    Types: TextFile
    Names: »kdb-start.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/gdb/kdb-start.c« 

TextFile

#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);
}