summaryrefslogtreecommitdiff
path: root/dviware/crudetype/version3/unix-default.h
blob: 68d13645548fbdf124ee221dbeaf5133f59c3b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 */