Skip to content
Snippets Groups Projects
Commit 3cefc21b authored by rtoy's avatar rtoy
Browse files

Include stdlib.h to get functions like exit() defined.

parent a09fed84
No related branches found
No related tags found
No related merge requests found
/*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/interr.c,v 1.5 2001/04/11 18:01:34 pw Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/interr.c,v 1.6 2004/07/08 18:00:26 rtoy Exp $
*
* Stuff to handle internal errors.
*
......@@ -7,6 +7,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include "arch.h"
#include "signal.h"
......
/*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/runprog.c,v 1.4 2004/07/07 22:22:59 rtoy Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/runprog.c,v 1.5 2004/07/08 18:00:26 rtoy Exp $
*
* Support for run-program.
*
*/
#include <stdlib.h>
#include <sys/file.h>
#include <sys/fcntl.h>
#include <sys/ioctl.h>
......
/*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/save.c,v 1.9 2004/07/07 22:22:59 rtoy Exp $
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/save.c,v 1.10 2004/07/08 18:00:26 rtoy Exp $
This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain.
......@@ -10,6 +10,7 @@
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <sys/file.h>
#include "lisp.h"
......
/*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/validate.c,v 1.19 2004/07/08 17:49:04 rtoy Exp $
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/validate.c,v 1.20 2004/07/08 18:00:26 rtoy Exp $
*
* Memory Validation
*/
......@@ -7,9 +7,11 @@
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#ifdef sparc
#include <alloca.h>
#endif
#include "lisp.h"
#include "os.h"
#include "globals.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment