/** stdlib.h **/ /** Copyright (c) 1990 by Markus Nick, 6500 Mainz 41 **/ #include char *getenv _((char *)); void abort _((void)); void exit _((int)); long *vaddr_cookie _((long cookie)); /* * These are not normally part of stdio.h, but are included here to help * reduce errors made by beginning programmers. */ extern char *sprintf(), *malloc(), *lmalloc(), *calloc(), *lcalloc(); extern char *alloca(), *realloc(), *lrealloc(); extern long labs(), lseek(); extern int errno; /* defined in exit.c */ /** added by mn at 10/17/89 **/ char *m_alloc(); /** EOF **/