summaryrefslogtreecommitdiff
path: root/Build/source/texk/chktex/chktex-src/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/chktex/chktex-src/types.h')
-rw-r--r--Build/source/texk/chktex/chktex-src/types.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Build/source/texk/chktex/chktex-src/types.h b/Build/source/texk/chktex/chktex-src/types.h
new file mode 100644
index 00000000000..a26b95295e4
--- /dev/null
+++ b/Build/source/texk/chktex/chktex-src/types.h
@@ -0,0 +1,17 @@
+/*
+ * Clone of <exec/types.h>, which could not be included because it's
+ * (c) Commodore/Escom/Amiga/whatever.
+ *
+ */
+
+#ifndef EXEC_TYPES_H
+#define EXEC_TYPES_H
+
+#ifndef TRUE
+# define TRUE 1L
+#endif
+#ifndef FALSE
+# define FALSE 0L
+#endif
+
+#endif