From b189c2432a4ba9bc111f2a4bb565ed9af09c8dc8 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 17 Sep 2018 04:39:01 +0200 Subject: Remove HAVE_STDARG_H The C89 standard and later defines the `` header as part of the standard headers [1]. On current systems it is always present and can be included unconditionally. Checking for presence and functionality of the `` header and variadic function is not relevant anymore on current systems since this is always available. Also Autoconf suggests relying on at least C89 or above [2] and [3]. The following files were regenerated with re2c 1.0.3: - Zend/zend_language_scanner.c - Zend/zend_language_scanner_defs.h Refs: [1] https://port70.net/~nsz/c/c89/c89-draft.html#4.1.2 [2] http://git.savannah.gnu.org/cgit/autoconf.git/tree/lib/autoconf/headers.m4 [3] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/autoconf.html --- TSRM/TSRM.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'TSRM/TSRM.c') diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index 9451ed1731..74ef25b50c 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -15,10 +15,7 @@ #ifdef ZTS #include - -#if HAVE_STDARG_H #include -#endif typedef struct _tsrm_tls_entry tsrm_tls_entry; -- cgit v1.2.1