diff options
Diffstat (limited to 'openbsd-compat/bsd-snprintf.h')
-rw-r--r-- | openbsd-compat/bsd-snprintf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsd-compat/bsd-snprintf.h b/openbsd-compat/bsd-snprintf.h index 002b764e3..95e4d136c 100644 --- a/openbsd-compat/bsd-snprintf.h +++ b/openbsd-compat/bsd-snprintf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: bsd-snprintf.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ | 1 | /* $Id: bsd-snprintf.h,v 1.3 2003/05/18 14:13:39 djm Exp $ */ |
2 | 2 | ||
3 | #ifndef _BSD_SNPRINTF_H | 3 | #ifndef _BSD_SNPRINTF_H |
4 | #define _BSD_SNPRINTF_H | 4 | #define _BSD_SNPRINTF_H |
@@ -8,11 +8,11 @@ | |||
8 | #include <sys/types.h> /* For size_t */ | 8 | #include <sys/types.h> /* For size_t */ |
9 | 9 | ||
10 | #ifndef HAVE_SNPRINTF | 10 | #ifndef HAVE_SNPRINTF |
11 | int snprintf(char *str, size_t count, const char *fmt, ...); | 11 | int snprintf(char *, size_t, const char *, ...); |
12 | #endif /* !HAVE_SNPRINTF */ | 12 | #endif /* !HAVE_SNPRINTF */ |
13 | 13 | ||
14 | #ifndef HAVE_VSNPRINTF | 14 | #ifndef HAVE_VSNPRINTF |
15 | int vsnprintf(char *str, size_t count, const char *fmt, va_list args); | 15 | int vsnprintf(char *, size_t, const char *, va_list); |
16 | #endif /* !HAVE_SNPRINTF */ | 16 | #endif /* !HAVE_SNPRINTF */ |
17 | 17 | ||
18 | 18 | ||