summaryrefslogtreecommitdiffstats
path: root/doc/tools/bmenu/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-05-27 12:40:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-05-27 12:40:11 +0000
commitae68ff085724dd35d60151bd153e80b8b0776873 (patch)
tree2f1535a0497f5b872a4744ae13c9264b77e89c11 /doc/tools/bmenu/system.h
parentThis commit was generated by cvs2svn to compensate for changes in r832, (diff)
downloadrtems-ae68ff085724dd35d60151bd153e80b8b0776873.tar.bz2
Initial revision
Diffstat (limited to 'doc/tools/bmenu/system.h')
-rw-r--r--doc/tools/bmenu/system.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/tools/bmenu/system.h b/doc/tools/bmenu/system.h
new file mode 100644
index 0000000000..21e163a35e
--- /dev/null
+++ b/doc/tools/bmenu/system.h
@@ -0,0 +1,29 @@
+
+#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