summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vsnprintf.c
diff options
context:
space:
mode:
authorRobert Drehmel <robert@FreeBSD.org>2002-08-15 10:28:52 +0000
committerRobert Drehmel <robert@FreeBSD.org>2002-08-15 10:28:52 +0000
commitf8418db73e3d0515fb582fa9a093019c08434267 (patch)
tree489a3958750fd27896cde415ed639eae393d181d /lib/libc/stdio/vsnprintf.c
parent71a00a449fdf93f68bc8357bb412ff94b653e30d (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/vsnprintf.c')
-rw-r--r--lib/libc/stdio/vsnprintf.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libc/stdio/vsnprintf.c b/lib/libc/stdio/vsnprintf.c
index 18b5e5c0537b..eae9adc58c83 100644
--- a/lib/libc/stdio/vsnprintf.c
+++ b/lib/libc/stdio/vsnprintf.c
@@ -45,11 +45,8 @@ __FBSDID("$FreeBSD$");
#include "local.h"
int
-vsnprintf(str, n, fmt, ap)
- char *str;
- size_t n;
- const char *fmt;
- _BSD_VA_LIST_ ap;
+vsnprintf(char *__restrict str, size_t n, const char *__restrict fmt,
+ _BSD_VA_LIST_ ap)
{
size_t on;
int ret;