Conditionally include various headers. Use "epaths.h",

not <../src/epaths.h>.
(malloc, realloc) [!HAVE_STDLIB_H]: Prototype.
This commit is contained in:
Dave Love
2001-12-18 15:57:02 +00:00
parent 058d49996c
commit 076a0ff7b1

View File

@@ -10,9 +10,26 @@
* With dynamic memory allocation.
*/
#include "config.h"
#include <stdio.h>
#include <ctype.h>
#include <../src/epaths.h> /* For PATH_DATA. */
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "epaths.h" /* For PATH_DATA. */
#define BUFSIZE 80
#define SEP '\0'
@@ -33,7 +50,9 @@
&res;})
#endif
char *malloc(), *realloc();
#ifndef HAVE_STDLIB_H
char *malloc __P ((size_t size))), *realloc __P ((POINTER_TYPE *ptr, size_t size));
#endif
void yow();
void setup_yow();