diff options
-rw-r--r-- | libexec/ld.so/dl_printf.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/libexec/ld.so/dl_printf.c b/libexec/ld.so/dl_printf.c index 54b2d775196..228269b9ad6 100644 --- a/libexec/ld.so/dl_printf.c +++ b/libexec/ld.so/dl_printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dl_printf.c,v 1.5 2002/02/19 19:39:38 millert Exp $ */ +/* $OpenBSD: dl_printf.c,v 1.6 2002/05/23 22:13:46 deraadt Exp $ */ /*- * Copyright (c) 1993 @@ -85,18 +85,6 @@ sputchar(int c) } void -_dl_sprintf(char *buf, const char *fmt, ...) -{ - va_list ap; - - sbuf = buf; - va_start(ap, fmt); - kdoprnt(sputchar, fmt, ap); - va_end(ap); - *sbuf = '\0'; -} - -void _dl_printf(const char *fmt, ...) { va_list ap; |