aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts/i386aix.h
blob: 871714fd8a851a89d915a832638b0a73f021c983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* i386 AIX 1.2.x host system */
/* From Minh Tran-Le <TRANLE@INTELLICORP.COM>.  */

#include <ansidecl.h>
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <utime.h>
#include <ctype.h>
#include <string.h>
#include <sys/file.h>

#ifndef	O_ACCMODE
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
#endif
#define SEEK_SET 0
#define SEEK_CUR 1

#define POSIX_UTIME

extern void	abort	PARAMS ((void));
extern int	close	PARAMS ((int));
extern void	exit	PARAMS ((int));
extern int	fclose	PARAMS ((FILE*));
extern void	free	PARAMS ((PTR));
extern int	fseek	PARAMS ((FILE*, long, int));
extern PTR	malloc	PARAMS ((unsigned));
extern void	perror	PARAMS ((CONST char *));
extern int	qsort	PARAMS ((void *data, int els, int siz, int func()));
extern PTR	realloc	PARAMS ((PTR, unsigned));

extern char *getenv();
extern int chmod();
extern int fstat();
extern int stat();

extern char *ctime();
extern int _flsbuf();
extern int fclose();
extern int utimes();
extern int vfprintf();
extern long atol();
extern int fputc();
extern int unlink();

#include "fopen-same.h"