about summary refs log tree commit diff
path: root/src/portab/vsnprintf.c
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2003-04-21 10:53:38 +0000
committerAlexander Barton <alex@barton.de>2003-04-21 10:53:38 +0000
commitdaa996f1778a1d7ba97a10936fbbb522cc63b581 (patch)
tree5a9a8ad8ae393a5e0342bf5221366d3dc5757ee6 /src/portab/vsnprintf.c
parent7deacbaa11e237c987ba7d379a3162846cda8f2d (diff)
downloadngircd-daa996f1778a1d7ba97a10936fbbb522cc63b581.tar.gz
ngircd-daa996f1778a1d7ba97a10936fbbb522cc63b581.zip
Added missing prototype for dummy_snprintf().
Diffstat (limited to 'src/portab/vsnprintf.c')
-rw-r--r--src/portab/vsnprintf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/portab/vsnprintf.c b/src/portab/vsnprintf.c
index 3713c408..3f9707b7 100644
--- a/src/portab/vsnprintf.c
+++ b/src/portab/vsnprintf.c
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: vsnprintf.c,v 1.4 2002/12/12 11:37:11 alex Exp $";
+static char UNUSED id[] = "$Id: vsnprintf.c,v 1.5 2003/04/21 10:53:38 alex Exp $";
 
 #include "imp.h"
 
@@ -98,6 +98,7 @@ static char UNUSED id[] = "$Id: vsnprintf.c,v 1.4 2002/12/12 11:37:11 alex Exp $
 /* only include stdio.h if we are not re-defining snprintf or vsnprintf */
 #include <stdio.h>
 /* make the compiler happy with an empty file */
+void dummy_snprintf PARAMS(( void ));
 void dummy_snprintf PARAMS(( void )) { }
 #else