1993-09-17 09:08:00 +00:00
|
|
|
#ifndef hosts_std_host_H
|
1992-12-22 23:37:36 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/file.h>
|
1995-04-25 18:07:43 +00:00
|
|
|
#include "ansidecl.h"
|
1992-12-22 23:37:36 +00:00
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef O_ACCMODE
|
1992-12-22 23:37:36 +00:00
|
|
|
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
|
|
|
#endif
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef SEEK_SET
|
1992-12-22 23:37:36 +00:00
|
|
|
#define SEEK_SET 0
|
|
|
|
#endif
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef SEEK_CUR
|
1992-12-22 23:37:36 +00:00
|
|
|
#define SEEK_CUR 1
|
|
|
|
#endif
|
|
|
|
#ifdef STDC_HEADERS
|
|
|
|
#include <stdlib.h>
|
|
|
|
/*#include <string.h>*/
|
|
|
|
#else
|
1993-06-03 20:58:50 +00:00
|
|
|
extern char *mktemp ();
|
|
|
|
extern PTR memset ();
|
1993-06-22 21:40:17 +00:00
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef DONTDECLARE_MALLOC
|
1993-06-03 20:58:50 +00:00
|
|
|
extern PTR malloc ();
|
|
|
|
extern PTR realloc ();
|
1992-12-22 23:37:36 +00:00
|
|
|
#endif
|
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef __GNUC__
|
1993-06-03 20:58:50 +00:00
|
|
|
extern PTR memcpy ();
|
1992-12-22 23:37:36 +00:00
|
|
|
#else
|
1993-06-03 20:58:50 +00:00
|
|
|
/* char * memcpy (); */
|
1992-12-22 23:37:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
1993-06-03 20:58:50 +00:00
|
|
|
extern void free ();
|
1992-12-22 23:37:36 +00:00
|
|
|
#else
|
|
|
|
extern int free();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern char * strchr();
|
|
|
|
extern char *getenv();
|
1993-07-02 17:38:16 +00:00
|
|
|
extern PTR memchr();
|
1992-12-22 23:37:36 +00:00
|
|
|
extern char *strrchr();
|
|
|
|
|
|
|
|
extern char *strrchr();
|
|
|
|
extern char *ctime();
|
|
|
|
extern long atol();
|
|
|
|
extern char *getenv();
|
1993-06-03 20:58:50 +00:00
|
|
|
#endif /* STDC_HEADERS */
|
1992-12-22 23:37:36 +00:00
|
|
|
|
1993-09-17 09:08:00 +00:00
|
|
|
#ifndef BYTES_IN_PRINTF_INT
|
1992-12-22 23:37:36 +00:00
|
|
|
#define BYTES_IN_PRINTF_INT 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "fopen-same.h"
|
1993-06-15 18:36:11 +00:00
|
|
|
#define hosts_std_host_H
|
|
|
|
#endif
|
1993-09-17 09:08:00 +00:00
|
|
|
|
|
|
|
#ifdef STDC_HEADERS
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif /* STDC_HEADERS */
|