summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-07-11 12:50:08 +1000
committerDamien Miller <djm@mindrot.org>2000-07-11 12:50:08 +1000
commit5c8b2501f7276af61008a7bdefebf992c3c5394a (patch)
tree0d1cddecd9eb1a3a993e0c04bea67eaab0ce6dc8
parent5d879bc8eae46783719793ca97787f902fd4a1e7 (diff)
Added missing ;
-rw-r--r--bsd-snprintf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-snprintf.h b/bsd-snprintf.h
index 2946c6613..ed7a21c97 100644
--- a/bsd-snprintf.h
+++ b/bsd-snprintf.h
@@ -6,7 +6,7 @@
6#include <sys/types.h> /* For size_t */ 6#include <sys/types.h> /* For size_t */
7 7
8#ifndef HAVE_SNPRINTF 8#ifndef HAVE_SNPRINTF
9int snprintf(char *str, size_t count, const char *fmt, ...) 9int snprintf(char *str, size_t count, const char *fmt, ...);
10#endif /* !HAVE_SNPRINTF */ 10#endif /* !HAVE_SNPRINTF */
11 11
12#ifndef HAVE_VSNPRINTF 12#ifndef HAVE_VSNPRINTF