aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts/harris.h
blob: 82750d48300ffc2c1be9133aae1b69f1f8938a44 (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
#include <ansidecl.h>
#include <errno.h>
#include <sys/types.h>
#include <unistd.h>

#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <time.h>
#include <ctype.h>

#include <stdio.h>

#ifndef	DONTDECLARE_MALLOC
extern PTR	malloc	PARAMS ((unsigned));
extern PTR	realloc	PARAMS ((PTR, unsigned));
#endif
extern int	abort	PARAMS ((void));
extern int	free	PARAMS ((PTR));
extern void	bcopy	PARAMS ((char*,char*,int));
extern void	exit	PARAMS ((int));
extern void	bzero	PARAMS ((char *, int));

extern int strtol();

#include "fopen-same.h"

/* From ANSI C <stddef.h>, which we can't depend upon the existence of */
#ifndef	offsetof
#define	offsetof(type,memb)	((size_t)&(((type *)0)->memb))
#endif