summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-snprintf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-13 14:05:59 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-13 14:05:59 +0000
commit116b6bdda81d6647cc2742280c15b3f42ab3dd24 (patch)
treee4544ad3e3011a58c6f4da55717072a08f3a920d /openbsd-compat/bsd-snprintf.c
parent6b4146ad739da603a298474db67824532508c3b8 (diff)
- (bal) Missing function prototype in bsd-snprintf.c patch by
Mark Miller <markm@swoon.net>
Diffstat (limited to 'openbsd-compat/bsd-snprintf.c')
-rw-r--r--openbsd-compat/bsd-snprintf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-snprintf.c b/openbsd-compat/bsd-snprintf.c
index 55d14284d..d02e5ae50 100644
--- a/openbsd-compat/bsd-snprintf.c
+++ b/openbsd-compat/bsd-snprintf.c
@@ -51,7 +51,7 @@
51 51
52#include "includes.h" 52#include "includes.h"
53 53
54RCSID("$Id: bsd-snprintf.c,v 1.3 2001/02/13 02:18:50 mouring Exp $"); 54RCSID("$Id: bsd-snprintf.c,v 1.4 2001/02/13 14:05:59 mouring Exp $");
55 55
56#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) 56#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
57 57
@@ -70,6 +70,9 @@ static void
70fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue, 70fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue,
71 int min, int max, int flags); 71 int min, int max, int flags);
72 72
73static void
74dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c);
75
73/* 76/*
74 * dopr(): poor man's version of doprintf 77 * dopr(): poor man's version of doprintf
75 */ 78 */