diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:33:03 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:33:03 +0300 |
commit | 2f83a4e72166e811a9f0b4726c19a3d5a0b17dcb (patch) | |
tree | 469bebda4e807139efb497edfca1ec0678b5ab8b /atari | |
parent | 66b0bdd602e952f20fa98f6ce5430cea68d4f598 (diff) | |
download | egawk-2f83a4e72166e811a9f0b4726c19a3d5a0b17dcb.tar.gz egawk-2f83a4e72166e811a9f0b4726c19a3d5a0b17dcb.tar.bz2 egawk-2f83a4e72166e811a9f0b4726c19a3d5a0b17dcb.zip |
Move to gawk-2.15.5.
Diffstat (limited to 'atari')
-rw-r--r-- | atari/config.h | 38 |
1 files changed, 2 insertions, 36 deletions
diff --git a/atari/config.h b/atari/config.h index 28c855bd..48eaf0f1 100644 --- a/atari/config.h +++ b/atari/config.h @@ -11,45 +11,11 @@ #define SZTC (size_t) #define INTC (int) -#define HAVE_STRING_H 1 /* have <string.h> */ -#ifdef HAVE_STRING_H -#undef NEED_MEMORY_H /* need <memory.h> to declare memcpy() et al. */ -#endif - -#define STDC_HEADERS 1 /* have the usual ANSI header files */ -#undef HAVE_UNISTD_H /* have <unistd.h> */ -#undef HAVE_ALLOCA_H /* have <alloca.h> -- only used if bison is used */ -#undef HAVE_SIGNUM_H /* have <signum.h> */ -#undef REGEX_MALLOC /* don't use alloca in regex.c */ - -#define HAVE_VPRINTF 1 /* have vprintf() */ - -#define HAVE_RANDOM 1 /* have random(), or using missing/random.c */ - -#define HAVE_STRCHR 1 /* have strchr() and strrchr() */ -#ifndef HAVE_STRCHR -#ifdef HAVE_RINDEX /* use index() and rindex() if present */ -#define strchr index -#define strrchr rindex -#endif -#endif - -#define HAVE_FMOD 1 /* have fmod(), otherwise use modf() */ - -#define HAVE_MEMCPY 1 /* have memcpy() et al. */ - -#define HAVE_ST_BLKSIZE 1 /* have st_blksize member in the stat(2) structure */ - -#define HAVE_STRFTIME 1 - -#define HAVE_STRINGIZE 1 /* have ANSI "stringizing" capability */ +#define STDC_HEADERS 1 /* have the usual ANSI header files */ +#undef REGEX_MALLOC /* use alloca in regex.c */ #undef __CHAR_UNSIGNED__ /* default char is signed */ -#define RETSIGTYPE void /* type used in signal() */ -#define SPRINTF_RET int /* type returned by sprintf() */ - -#undef _ALL_SOURCE /* on AIX, used to get some BSD functions */ /* * srandom already has a prototype defined - don't redefine it */ |