1 		/* These sizeofs are used in determining what kind of
2 		   int is needed to have enough bits to hold a flag
3 		   field.  It is OK for the sizes defined here to be
4 		   smaller than the true sizes: at worst it will just
5 		   use more space than necessary.  The generic version
6 		   uses values of 2, 4, 4 which should work fine on all
7 		   recent-vintage 32-bit machines.  */
8 
9 #define SIZEOF_SHORT	2
10 #define SIZEOF_INT	4
11 #define SIZEOF_LONG	4
12 
13 		/* If unistd.h exists, use it to declare unlink in ftnchek.c */
14 #define HAVE_UNISTD_H	0
15 
16 		/* If stdlib.h exists, use it to declare malloc and friends */
17 #define HAVE_STDLIB_H	1
18 
19 		/* Use strings.h for strcasecmp() and strncasecmp() */
20 #define HAVE_STRINGS_H	1
21 
22 		/* Either memset or bzero is needed in forlex.c: memset
23 		   is preferred.
24 		 */
25 #define HAVE_MEMSET	1
26 #define HAVE_BZERO	0
27 
28 		/* Some compilers don't have strcasecmp but have stricmp
29 		   or strcmpi instead.  Set up suitable defines here.
30 		*/
31 #define HAVE_STRCASECMP		0
32 #define HAVE_STRICMP		0
33 #define HAVE_STRCMPI		0
34