From 317412502b900ddecdafdfa171da99271846478b Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 19 May 2003 00:13:38 +1000 Subject: - (djm) Big KNF on openbsd-compat/ --- openbsd-compat/bsd-snprintf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'openbsd-compat/bsd-snprintf.h') 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 @@ -/* $Id: bsd-snprintf.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ +/* $Id: bsd-snprintf.h,v 1.3 2003/05/18 14:13:39 djm Exp $ */ #ifndef _BSD_SNPRINTF_H #define _BSD_SNPRINTF_H @@ -8,11 +8,11 @@ #include /* For size_t */ #ifndef HAVE_SNPRINTF -int snprintf(char *str, size_t count, const char *fmt, ...); +int snprintf(char *, size_t, const char *, ...); #endif /* !HAVE_SNPRINTF */ #ifndef HAVE_VSNPRINTF -int vsnprintf(char *str, size_t count, const char *fmt, va_list args); +int vsnprintf(char *, size_t, const char *, va_list); #endif /* !HAVE_SNPRINTF */ -- cgit v1.2.3