summaryrefslogtreecommitdiff
path: root/contrib/tcp_wrappers/mystdarg.h
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-07-24 09:05:01 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-07-24 09:05:01 +0000
commit169285e67baae4a0fdb27d78bd659fe50a26bb93 (patch)
treea30aa9b663d1ed8734ece42bad186ac9ffe04c51 /contrib/tcp_wrappers/mystdarg.h
parent7c79d50ee7f8468dcf210a772e79cfbf6259eb88 (diff)
Notes
Diffstat (limited to 'contrib/tcp_wrappers/mystdarg.h')
-rw-r--r--contrib/tcp_wrappers/mystdarg.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/contrib/tcp_wrappers/mystdarg.h b/contrib/tcp_wrappers/mystdarg.h
deleted file mode 100644
index 36bdf696f1a5..000000000000
--- a/contrib/tcp_wrappers/mystdarg.h
+++ /dev/null
@@ -1,19 +0,0 @@
-
- /*
- * What follows is an attempt to unify varargs.h and stdarg.h. I'd rather
- * have this than #ifdefs all over the code.
- */
-
-#ifdef __STDC__
-#include <stdarg.h>
-#define VARARGS(func,type,arg) func(type arg, ...)
-#define VASTART(ap,type,name) va_start(ap,name)
-#define VAEND(ap) va_end(ap)
-#else
-#include <varargs.h>
-#define VARARGS(func,type,arg) func(va_alist) va_dcl
-#define VASTART(ap,type,name) {type name; va_start(ap); name = va_arg(ap, type)
-#define VAEND(ap) va_end(ap);}
-#endif
-
-extern char *percent_m();