summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vsnprintf.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2006-01-06 18:53:04 +0000
committermillert <millert@openbsd.org>2006-01-06 18:53:04 +0000
commitc916d9484c509baa9353d23da83498a233020707 (patch)
treebc23cd53ac2a230eb3bbf73714b0c7e1ecb6e55a /lib/libc/stdio/vsnprintf.c
parentMerge machine/ansi.h and machine/types.h into machine/_types.h and (diff)
downloadwireguard-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/vsnprintf.c')
-rw-r--r--lib/libc/stdio/vsnprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c
index 9064571c4d7..e6dd009d106 100644
--- a/lib/libc/stdio/vsnprintf.c
+++ b/lib/libc/stdio/vsnprintf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vsnprintf.c,v 1.11 2005/10/10 12:00:52 espie Exp $ */
+/* $OpenBSD: vsnprintf.c,v 1.12 2006/01/06 18:53:04 millert Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -37,7 +37,7 @@
#include "local.h"
int
-vsnprintf(char *str, size_t n, const char *fmt, _BSD_VA_LIST_ ap)
+vsnprintf(char *str, size_t n, const char *fmt, __va_list ap)
{
int ret;
char dummy;