mirror of
https://github.com/ThomasDickey/mawk-snapshots.git
synced 2026-01-27 03:14:29 +00:00
106 lines
2.2 KiB
Plaintext
106 lines
2.2 KiB
Plaintext
/********************************************
|
|
config_h.in
|
|
copyright 2009-2023,2024 Thomas E. Dickey
|
|
vile:cmode
|
|
|
|
This is a source file for mawk, an implementation of
|
|
the AWK programming language.
|
|
|
|
Mawk is distributed without warranty under the terms of
|
|
the GNU General Public License, version 2, 1991.
|
|
********************************************/
|
|
|
|
/*
|
|
* $MawkId: config_h.in,v 1.43 2024/12/14 01:12:07 tom Exp $
|
|
* template for config.h
|
|
*/
|
|
|
|
#undef DECL_ENVIRON
|
|
#undef FPE_TRAPS_ON
|
|
#undef GCC_NORETURN
|
|
#undef GCC_PRINTFLIKE
|
|
#undef GCC_SCANFLIKE
|
|
#undef GCC_UNUSED
|
|
#undef HAVE_BSD_STDLIB_H
|
|
#undef HAVE_CLOCK_GETTIME
|
|
#undef HAVE_ENVIRON
|
|
#undef HAVE_ERRNO_H
|
|
#undef HAVE_FCNTL_H
|
|
#undef HAVE_FORK
|
|
#undef HAVE_FSEEKO
|
|
#undef HAVE_FSTAT
|
|
#undef HAVE_GETTIMEOFDAY
|
|
#undef HAVE_INT64_T
|
|
#undef HAVE_INTTYPES_H
|
|
#undef HAVE_ISINF
|
|
#undef HAVE_ISNAN
|
|
#undef HAVE_LIMITS_H
|
|
#undef HAVE_LONG_LONG
|
|
#undef HAVE_MATHERR
|
|
#undef HAVE_MATH__LIB_VERSION
|
|
#undef HAVE_MEMORY_H
|
|
#undef HAVE_MKTIME
|
|
#undef HAVE_PIPE
|
|
#undef HAVE_REAL_PIPES
|
|
#undef HAVE_REGEXPR_H_FUNCS
|
|
#undef HAVE_REGEXP_H_FUNCS
|
|
#undef HAVE_REGEX_H_FUNCS
|
|
#undef HAVE_SIGACTION
|
|
#undef HAVE_SIGACTION_SA_SIGACTION
|
|
#undef HAVE_SIGINFO_H
|
|
#undef HAVE_STDINT_H
|
|
#undef HAVE_STDLIB_H
|
|
#undef HAVE_STRFTIME
|
|
#undef HAVE_STRINGS_H
|
|
#undef HAVE_STRING_H
|
|
#undef HAVE_STRTOD_OVF_BUG
|
|
#undef HAVE_SYS_STAT_H
|
|
#undef HAVE_SYS_TYPES_H
|
|
#undef HAVE_SYS_WAIT_H
|
|
#undef HAVE_TDESTROY
|
|
#undef HAVE_TSEARCH
|
|
#undef HAVE_UINT64_T
|
|
#undef HAVE_UNISTD_H
|
|
#undef HAVE_WAIT
|
|
#undef LOCALE
|
|
#undef LOCAL_REGEXP
|
|
#undef MAWK_RAND_MAX
|
|
#undef MAX__INT
|
|
#undef MAX__LONG
|
|
#undef MAX__UINT
|
|
#undef MAX__ULONG
|
|
#undef NAME_RANDOM
|
|
#undef NOINFO_SIGFPE
|
|
#undef NO_GAWK_OPTIONS
|
|
#undef NO_INIT_SRAND
|
|
#undef NO_INTERVAL_EXPR
|
|
#undef NO_LEAKS
|
|
#undef SIZEOF_DOUBLE
|
|
#undef SIZEOF_FLOAT
|
|
#undef SIZEOF_INT64_T
|
|
#undef SIZEOF_LONG
|
|
#undef SIZEOF_LONG_LONG
|
|
#undef SIZE_T_STDDEF_H
|
|
#undef SIZE_T_TYPES_H
|
|
#undef STDC_HEADERS
|
|
#undef SYSTEM_NAME
|
|
#undef TURN_OFF_FPE_TRAPS
|
|
#undef TURN_ON_FPE_TRAPS
|
|
#undef USE_IEEEFP_H
|
|
#undef YY_NO_LEAKS
|
|
#undef const
|
|
#undef mawk_rand
|
|
#undef mawk_srand
|
|
|
|
#ifndef GCC_NORETURN
|
|
#define GCC_NORETURN /* nothing */
|
|
#endif
|
|
|
|
#ifndef GCC_UNUSED
|
|
#define GCC_UNUSED /* nothing */
|
|
#endif
|
|
|
|
#ifndef OPT_TRACE
|
|
#define OPT_TRACE 0
|
|
#endif
|