summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-snprintf.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-19 00:13:38 +1000
committerDamien Miller <djm@mindrot.org>2003-05-19 00:13:38 +1000
commit317412502b900ddecdafdfa171da99271846478b (patch)
tree2e04f618288cdf0c16a98b675b28b8287a15a0c6 /openbsd-compat/bsd-snprintf.h
parente323df6c4851b04386e747a009474f469fe97137 (diff)
- (djm) Big KNF on openbsd-compat/
Diffstat (limited to 'openbsd-compat/bsd-snprintf.h')
-rw-r--r--openbsd-compat/bsd-snprintf.h6
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
11int snprintf(char *str, size_t count, const char *fmt, ...); 11int snprintf(char *, size_t, const char *, ...);
12#endif /* !HAVE_SNPRINTF */ 12#endif /* !HAVE_SNPRINTF */
13 13
14#ifndef HAVE_VSNPRINTF 14#ifndef HAVE_VSNPRINTF
15int vsnprintf(char *str, size_t count, const char *fmt, va_list args); 15int vsnprintf(char *, size_t, const char *, va_list);
16#endif /* !HAVE_SNPRINTF */ 16#endif /* !HAVE_SNPRINTF */
17 17
18 18