File: config-generic.h

package info (click to toggle)
ftnchek 3.1.2-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,436 kB
  • ctags: 5,393
  • sloc: ansic: 24,609; fortran: 5,565; yacc: 3,682; sh: 2,518; makefile: 772; lisp: 264; f90: 94; perl: 76
file content (26 lines) | stat: -rw-r--r-- 755 bytes parent folder | download
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
		/* These sizeofs are used in determining what kind of
		   int is needed to have enough bits to hold a flag
		   field.  It is OK for the sizes defined here to be
		   smaller than the true sizes: at worst it will just
		   use more space than necessary.  The generic version
		   uses values of 2, 4, 4 which should work fine on all
		   recent-vintage 32-bit machines.  */

#define SIZEOF_SHORT	2
#define SIZEOF_INT	4
#define SIZEOF_LONG	4

		/* If unistd.h exists, use it to declare unlink in ftnchek.c */
#define HAVE_UNISTD_H	0

		/* If stdlib.h exists, use it to declare malloc and friends */
#define HAVE_STDLIB_H	1

		/* Either memset or bzero is needed in forlex.c: memset
		   is preferred.
		 */
#define HAVE_MEMSET	1
#define HAVE_BZERO	0