|
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: 257 (0x101) Types: TextFile Names: »getmem.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/news/misc/search/lib/getmem.c«
/* Allocate memory, issue fatal error instead of returning NULL. */ #include "defs.h" char * getmem(n) int n; { register char *p= malloc((unsigned) n); if (p == NULL) { fatal("out of memory"); exit(2); /* If fatal doesn't exit */ } return p; }