summaryrefslogtreecommitdiffstats
path: root/doc/tools/pdl2texi/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-16 21:30:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-16 21:30:08 +0000
commita66872f6576191a59a834430f85170adc2f6b981 (patch)
tree2fbb6823812ffb26051aa05c2ae498ee62b5b689 /doc/tools/pdl2texi/system.h
parentbase RTEMS documentation (diff)
downloadrtems-a66872f6576191a59a834430f85170adc2f6b981.tar.bz2
base PDL 2 TEXI
Diffstat (limited to '')
-rw-r--r--doc/tools/pdl2texi/system.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/tools/pdl2texi/system.h b/doc/tools/pdl2texi/system.h
new file mode 100644
index 0000000000..173e48ce04
--- /dev/null
+++ b/doc/tools/pdl2texi/system.h
@@ -0,0 +1,36 @@
+/*
+ * COPYRIGHT (c) 1997.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights reserved.
+ *
+ * $Id$
+ */
+
+#ifndef __SYSTEM_h
+#define __SYSTEM_h
+
+typedef unsigned int unsigned32;
+typedef unsigned short unsigned16;
+typedef unsigned char unsigned8;
+
+#define USE_INLINES
+#define STATIC static
+#define INLINE inline
+
+#ifndef NULL
+#define NULL 0
+#endif
+
+typedef unsigned int boolean;
+
+#if !defined( TRUE ) || (TRUE != 1)
+#undef TRUE
+#define TRUE (1)
+#endif
+
+#if !defined( FALSE ) || (FALSE != 0)
+#undef FALSE
+#define FALSE 0
+#endif
+
+#endif