From e0c6872cf40896c7be36b11dcc744620f10adf1d Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 2 Sep 2019 13:46:59 +0900 Subject: Initial commit --- dviware/crudetype/version3/unix-default.h | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 dviware/crudetype/version3/unix-default.h (limited to 'dviware/crudetype/version3/unix-default.h') 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 */ -- cgit v1.2.3