/* machdep.h (creatdct) Machine dependencies and limits Copyright (c) 1992 by CRC */ /* SWITCHAR should be left as '-' if at all possible. For DOS computers, ALTSWITCHAR should be '/' Also, define the OPSYSDOS manifest rather than OPSYSUNIX. */ #if 0 #define OPSYSMAC #define OPSYSDOS #endif #define OPSYSUNIX #define SWITCHAR '-' /* cmd-line option switch char */ #if defined(OPSYSUNIX) #define ALTSWITCHAR '-' /* cmd-line option switch char */ #endif #if defined(OPSYSDOS) #define ALTSWITCHAR '/' /* cmd-line option switch char */ #endif #define FILENAMELENGTH 255 /* max length of filenames */ #define TABPOS 8 /* how tabs expand */ #define MAXWIDTH 1000 /* max width of input file */ #define MAXVARS 254 /* max # of vars can handle */ /* linkages to system-provided functions */ void exit() ; #if defined(OPSYSUNIX) #include #else #include #endif #include