summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-snprintf.c
diff options
context:
space:
mode:
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 */