File: config.h.in

package info (click to toggle)
ftnchek 3.3.1-7
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,684 kB
  • sloc: ansic: 21,908; fortran: 5,748; yacc: 4,071; sh: 3,035; makefile: 895; lisp: 322; f90: 118; perl: 76
file content (33 lines) | stat: -rw-r--r-- 1,175 bytes parent folder | download | duplicates (5)
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
		/* 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	@SIZEOF_SHORT@
#define SIZEOF_INT	@SIZEOF_INT@
#define SIZEOF_LONG	@SIZEOF_LONG@

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

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

		/* Use strings.h for strcasecmp() and strncasecmp() */
#define HAVE_STRINGS_H	@HAVE_STRINGS_H@

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

		/* Some compilers don't have strcasecmp but have stricmp
		   or strcmpi instead.  Set up suitable defines here.
		*/
#define HAVE_STRCASECMP		@HAVE_STRCASECMP@
#define HAVE_STRICMP		@HAVE_STRICMP@
#define HAVE_STRCMPI		@HAVE_STRCMPI@