summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bio.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-05 12:35:27 +0000
committerUlf Möller <ulf@openssl.org>1999-05-05 12:35:27 +0000
commit4565c3e36f5d1b74a0bdad03aa5b8c63744340a2 (patch)
treef55007befc849420a37d05af1f8648201a3c2d74 /crypto/bio/bio.h
parent5fd1e150f7db742e64f23c4358deed4cd0863b69 (diff)
Use ANSI stdarg.
Diffstat (limited to 'crypto/bio/bio.h')
-rw-r--r--crypto/bio/bio.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h
index 0915c8885d..b2871c7235 100644
--- a/crypto/bio/bio.h
+++ b/crypto/bio/bio.h
@@ -532,28 +532,8 @@ void BIO_copy_next_retry(BIO *b);
long BIO_ghbn_ctrl(int cmd,int iarg,char *parg);
-/* Tim Hudson's portable varargs stuff */
+int BIO_printf(BIO *bio, ...);
-#define VAR_ANSI /* select ANSI version by default */
-#endif
-
-#ifdef VAR_ANSI
-/* ANSI version of a "portable" macro set for variable length args */
-#ifndef __STDARG_H__ /**/
-#include <stdarg.h>
-#endif /**/
-
-#define VAR_PLIST(arg1type,arg1) arg1type arg1, ...
-#define VAR_PLIST2(arg1type,arg1,arg2type,arg2) arg1type arg1,arg2type arg2,...
-#define VAR_ALIST
-#define VAR_BDEFN(args,arg1type,arg1) va_list args
-#define VAR_BDEFN2(args,arg1type,arg1,arg2type,arg2) va_list args
-#define VAR_INIT(args,arg1type,arg1) va_start(args,arg1);
-#define VAR_INIT2(args,arg1type,arg1,arg2type,arg2) va_start(args,arg2);
-#define VAR_ARG(args,type,arg) arg=va_arg(args,type)
-#define VAR_END(args) va_end(args);
-
-int BIO_printf( VAR_PLIST( BIO *, bio ) );
/* BEGIN ERROR CODES */
/* The following lines are auto generated by the script mkerr.pl. Any changes
* made after this point may be overwritten when the script is next run.