diff options
author | 2006-01-06 18:53:04 +0000 | |
---|---|---|
committer | 2006-01-06 18:53:04 +0000 | |
commit | c916d9484c509baa9353d23da83498a233020707 (patch) | |
tree | bc23cd53ac2a230eb3bbf73714b0c7e1ecb6e55a /lib/libc/stdio/vfprintf.c | |
parent | Merge machine/ansi.h and machine/types.h into machine/_types.h and (diff) | |
download | wireguard-openbsd-c916d9484c509baa9353d23da83498a233020707.tar.xz wireguard-openbsd-c916d9484c509baa9353d23da83498a233020707.zip |
Adapt things to use __type_t instead of _BSD_TYPE_T_
Add new sys/_types.h header
Include machine/_types.h or sys/_types.h where applicable
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 57893187c9a..84e80889049 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.35 2005/12/19 19:43:01 millert Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.36 2006/01/06 18:53:04 millert Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -150,7 +150,7 @@ static int exponent(char *, int, int); #define CHARINT 0x800 /* 8 bit integer */ int -vfprintf(FILE *fp, const char *fmt0, _BSD_VA_LIST_ ap) +vfprintf(FILE *fp, const char *fmt0, __va_list ap) { char *fmt; /* format string */ int ch; /* character from fmt */ |