freebsd-src/usr.bin/yacc/config.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

114 lines
3.2 KiB
C
Raw Permalink Normal View History

2020-07-14 09:54:24 +08:00
/* config.h. Generated automatically by configure. */
2013-05-30 21:10:38 +08:00
/* config_h.in. Generated automatically from configure.in by autoheader. */
/* Define to noreturn-attribute for gcc */
#define GCC_NORETURN __attribute__((noreturn))
2013-05-30 21:10:38 +08:00
/* Define to 1 if the compiler supports gcc-like printf attribute. */
#define GCC_PRINTF 1
2013-05-30 21:10:38 +08:00
/* Define to printf-attribute for gcc */
#define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
2013-05-30 21:10:38 +08:00
/* Define to 1 if the compiler supports gcc-like scanf attribute. */
#define GCC_SCANF 1
2013-05-30 21:10:38 +08:00
/* Define to sscanf-attribute for gcc */
#define GCC_SCANFLIKE(fmt,var) __attribute__((format(scanf,fmt,var)))
2013-05-30 21:10:38 +08:00
/* Define to unused-attribute for gcc */
#define GCC_UNUSED __attribute__((unused))
2013-05-30 21:10:38 +08:00
/* Define if you have the <fcntl.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_FCNTL_H 1
2013-05-30 21:10:38 +08:00
2020-06-23 06:42:20 +08:00
/* Define if you have the `getopt' function. */
2020-07-14 09:54:24 +08:00
#define HAVE_GETOPT 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <getopt.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_GETOPT_H 1
2020-06-23 06:42:20 +08:00
/* Define to 1 if getopt variables are declared in header */
2020-07-14 09:54:24 +08:00
#define HAVE_GETOPT_HEADER 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <inttypes.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_INTTYPES_H 1
2020-06-23 06:42:20 +08:00
2013-05-30 21:10:38 +08:00
/* Define if you have the `dbmalloc' library (-ldbmalloc). */
2020-07-14 09:54:24 +08:00
/* #undef HAVE_LIBDBMALLOC */
2013-05-30 21:10:38 +08:00
/* Define if you have the `dmalloc' library (-ldmalloc). */
2020-07-14 09:54:24 +08:00
/* #undef HAVE_LIBDMALLOC */
2013-05-30 21:10:38 +08:00
2020-06-23 06:42:20 +08:00
/* Define if you have the <memory.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_MEMORY_H 1
2020-06-23 06:42:20 +08:00
2013-05-30 21:10:38 +08:00
/* Define to 1 if mkstemp() is available and working. */
2020-07-14 09:54:24 +08:00
#define HAVE_MKSTEMP 1
2013-05-30 21:10:38 +08:00
2020-06-23 06:42:20 +08:00
/* Define if you have the <stdint.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_STDINT_H 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <stdlib.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_STDLIB_H 1
2020-06-23 06:42:20 +08:00
2023-02-08 01:25:11 +08:00
/* Define if <stdnoreturn.h> header is available and working */
/* #undef HAVE_STDNORETURN_H */
2023-02-08 01:25:11 +08:00
2020-06-23 06:42:20 +08:00
/* Define if you have the <strings.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_STRINGS_H 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <string.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_STRING_H 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <sys/stat.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_SYS_STAT_H 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <sys/types.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_SYS_TYPES_H 1
2020-06-23 06:42:20 +08:00
/* Define if you have the <unistd.h> header file. */
2020-07-14 09:54:24 +08:00
#define HAVE_UNISTD_H 1
2020-06-23 06:42:20 +08:00
/* Define if you have the `vsnprintf' function. */
2020-07-14 09:54:24 +08:00
#define HAVE_VSNPRINTF 1
2014-05-25 08:06:54 +08:00
2014-04-23 06:11:22 +08:00
/* Define to maximum table size (default: 32500) */
2020-07-14 09:54:24 +08:00
/* #undef MAXTABLE */
2014-04-23 06:11:22 +08:00
2013-05-30 21:10:38 +08:00
/* Define to 1 if filesystem supports mixed-case filenames. */
2020-07-14 09:54:24 +08:00
#define MIXEDCASE_FILENAMES 1
2013-05-30 21:10:38 +08:00
2020-06-23 06:42:20 +08:00
/* Define to 1 if we must include getopt.h */
2020-07-14 09:54:24 +08:00
/* #undef NEED_GETOPT_H */
2020-06-23 06:42:20 +08:00
2013-05-30 21:10:38 +08:00
/* Define to 1 if you want to perform memory-leak testing. */
2020-07-14 09:54:24 +08:00
/* #undef NO_LEAKS */
2013-05-30 21:10:38 +08:00
2020-06-23 06:42:20 +08:00
/* Define if you have the ANSI C header files. */
2020-07-14 09:54:24 +08:00
#define STDC_HEADERS 1
2020-06-23 06:42:20 +08:00
2023-02-08 01:25:11 +08:00
/* Define if C11 _Noreturn keyword is supported */
/* #undef STDC_NORETURN */
2023-02-08 01:25:11 +08:00
2013-05-30 21:10:38 +08:00
/* Define to the system name. */
#define SYSTEM_NAME "freebsd14.0"
2013-05-30 21:10:38 +08:00
/* "Define to 1 if you want to use dbmalloc for testing." */
2020-07-14 09:54:24 +08:00
/* #undef USE_DBMALLOC */
2013-05-30 21:10:38 +08:00
/* "Define to 1 if you want to use dmalloc for testing." */
2020-07-14 09:54:24 +08:00
/* #undef USE_DMALLOC */
2013-05-30 21:10:38 +08:00
/* "Define to 1 if you want to use valgrind for testing." */
2020-07-14 09:54:24 +08:00
/* #undef USE_VALGRIND */
2013-05-30 21:10:38 +08:00
2014-04-23 06:11:22 +08:00
/* Define to 1 to enable backtracking extension */
/* #undef YYBTYACC */
2014-04-23 06:11:22 +08:00
2013-05-30 21:10:38 +08:00
/* Define to 1 if you want to perform memory-leak testing. */
2020-07-14 09:54:24 +08:00
/* #undef YY_NO_LEAKS */
2020-06-23 06:42:20 +08:00
/* Define to `int' if <sys/types.h> does not define. */
2020-07-14 09:54:24 +08:00
/* #undef mode_t */