File: bcc.h

package info (click to toggle)
linux86 0.16.21-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,072 kB
  • sloc: ansic: 66,757; asm: 6,154; makefile: 1,374; sh: 703
file content (32 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (12)
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