summaryrefslogtreecommitdiff
path: root/dviware/crudetype/version3/unix-default.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /dviware/crudetype/version3/unix-default.h
Initial commit
Diffstat (limited to 'dviware/crudetype/version3/unix-default.h')
-rw-r--r--dviware/crudetype/version3/unix-default.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/dviware/crudetype/version3/unix-default.h b/dviware/crudetype/version3/unix-default.h
new file mode 100644
index 0000000000..68d1364554
--- /dev/null
+++ b/dviware/crudetype/version3/unix-default.h
@@ -0,0 +1,34 @@
+/* Sample of DEFAULTS.H. But you should normally use the one in your
+ top-level TEX directory.
+
+ More configuration definitions for web2c. Unlike those in site.h,
+ you need not and should not change these. If you do, then (a) tell
+ the people listed in README why you need to change them, and (b) be
+ prepared for everything to fail. */
+
+/* Define if you're running under MS-DOS with Microsoft C. (This port
+ is not complete.) */
+#ifndef MS_DOS
+#undef MS_DOS
+#endif
+
+/* These types can be basically anything, so they don't need to be put in
+ site.h. Despite the dire warning above, probably nothing bad will
+ happen if you change them -- but you shouldn't need to. */
+typedef char boolean;
+typedef double real;
+
+/* The maximum length of a filename including a directory specifier. */
+#define FILENAMESIZE 512
+
+
+/* Hack to get around High C on an IBM RT treating `char' differently
+ than normal compilers, etc. */
+
+#if defined(__HIGHC__) && defined(ibm032)
+pragma Off(Char_default_unsigned);
+pragma On(Char_is_rep);
+pragma On(Parm_warnings);
+pragma On(Pointers_compatible);
+pragma On(Pointers_compatible_with_ints);
+#endif /* __HIGHC__ && ibm032 */