Johns release

This commit is contained in:
K. Richard Pixley 1991-03-28 16:28:29 +00:00
parent bd5635a1e2
commit dd3b648e8b
246 changed files with 59132 additions and 0 deletions

10
gdb/stdlib.h Executable file
View file

@ -0,0 +1,10 @@
/* Fake stdlib.h supplying the stuff needed by malloc. */
#ifndef __ONEFILE
#include <stddef.h>
#endif
extern void EXFUN(abort, (void));
extern void EXFUN(free, (PTR));
extern PTR EXFUN(malloc, (size_t));
extern PTR EXFUN(realloc, (PTR, size_t));