Include <stdlib.h> if available.

This commit is contained in:
Andreas Schwab 1999-08-30 15:08:30 +00:00
parent 1ee65e5c81
commit eed63914b0
2 changed files with 8 additions and 0 deletions

View file

@ -69,6 +69,10 @@ main ()
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif
/* Type definitions */

View file

@ -67,6 +67,10 @@ int scan_c_file ();
#include <unistd.h>
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif
/* Stdio stream for output to the DOC file. */
FILE *outfile;