summaryrefslogtreecommitdiff
path: root/bcc/bcc.h
blob: 788441ebab5c5d9342949325964eb8d37a3e224d (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
/* Copyright (C) 1997 Robert de Bath <robert@mayday.cix.co.uk>
 * This file is part of the Linux-8086 Development environment and is
 * distributed under the GNU General Public License. */

#ifdef _AIX
#include <sys/types.h>	/* AIX 4.1 + GCC seems to need this */
#endif

/* Ansi C has certain guarentees ... except under MSdross :-( */

#ifdef __STDC__
#ifndef MSDOS
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#endif

#define P(x)	x

#else
#define P(x)	()
#endif

#include "const.h"
#include "types.h"
#include "proto.h"

#if !defined(__STDC__) || defined(MSDOS)
#include "sysproto.h"
#endif