* hosts/delta88v4.h: New for SVR4.
[deliverable/binutils-gdb.git] / bfd / hosts / sysv4.h
CommitLineData
be78a130
JG
1/* System V Release 4 Unix host system */
2
d7276c0a 3#include <ansidecl.h>
be78a130
JG
4#include <fcntl.h>
5#include <errno.h>
6#include <stdio.h>
7#include <sys/types.h>
8#include <sys/stat.h>
9#include <utime.h>
10#include <ctype.h>
11#include <string.h>
12#include <sys/file.h>
13
14#ifndef O_ACCMODE
15#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
16#endif
17#define SEEK_SET 0
18#define SEEK_CUR 1
19
20#define POSIX_UTIME
21#define HAVE_PROCFS /* This host has /proc support */
22
e49d5379
JG
23extern void abort PARAMS ((void));
24extern int close PARAMS ((int));
25extern void exit PARAMS ((int));
26extern int fclose PARAMS ((FILE*));
27extern void free PARAMS ((PTR));
28extern int fseek PARAMS ((FILE*, long, int));
29extern int getgid PARAMS (());
30extern int getuid PARAMS (());
31extern PTR malloc PARAMS ((unsigned));
32extern void perror PARAMS ((CONST char *));
33extern int qsort PARAMS ((void *data, int els, int siz, int func()));
34extern PTR realloc PARAMS ((PTR, unsigned));
be78a130
JG
35
36extern char *getenv();
37extern int chmod();
38extern int fstat();
39extern int stat();
40extern int strtol();
41
42extern char *ctime();
43extern int _flsbuf();
44extern int fclose();
45extern int utimes();
46extern int vfprintf();
47extern long atol();
48extern int fputc();
49extern int unlink();
50
be78a130 51#include "fopen-same.h"
This page took 0.062354 seconds and 4 git commands to generate.