summaryrefslogtreecommitdiff
path: root/make.h
diff options
context:
space:
mode:
Diffstat (limited to 'make.h')
-rw-r--r--make.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/make.h b/make.h
index 01eeb7a..786fc6c 100644
--- a/make.h
+++ b/make.h
@@ -387,21 +387,6 @@ struct floc
#define STRING_SIZE_TUPLE(_s) (_s), (sizeof (_s)-1)
-/* Fancy processing for variadic functions in both ANSI and pre-ANSI
- compilers. */
-#if HAVE_STDARG_H
-# include <stdarg.h>
-# define VA_START(a, f) va_start(a, f)
-#else
-# if HAVE_VARARGS_H
-# include <varargs.h>
-# define VA_START(a, f) va_start(a)
-# endif
-#endif
-#ifndef VA_START
- error no variadic api
-#endif
-
/* We have to have both stdarg.h or varargs.h AND v*printf or doprnt to use
variadic versions of these functions. */