1 /*
2  *      %W%       TriChlor: %G% %U%
3  */
4 
5 #ifndef _PORTABLE_H_
6 #define _PORTABLE_H_
7 
8 /* uncomment this for compilation on MS-Windows
9 #define _WINDOWS        1
10 */
11 
12 #if _WINDOWS
13 #define lint            /* so we won't get the SCCS strings */
14 #else /* not _WINDOWS */
15 #define FAR
16 #define PASCAL
17 #endif
18 
19 /* for u_char, u_int */
20 #if _WINDOWS | _MSDOS
21 typedef unsigned char u_char;
22 typedef unsigned int u_int;
23 #else
24 #include <sys/types.h>
25 #endif
26 
27 #endif /* _PORTABLE_H_ */
28