summaryrefslogtreecommitdiff
path: root/bcc/bcc.h
diff options
context:
space:
mode:
Diffstat (limited to 'bcc/bcc.h')
-rw-r--r--bcc/bcc.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/bcc/bcc.h b/bcc/bcc.h
new file mode 100644
index 0000000..275c100
--- /dev/null
+++ b/bcc/bcc.h
@@ -0,0 +1,28 @@
+/* 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. */
+
+/* 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
+