aboutsummaryrefslogtreecommitdiffstats
path: root/snprintf.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-07-12 07:06:25 +0000
committerGuy Harris <guy@alum.mit.edu>2001-07-12 07:06:25 +0000
commitdd3fcb36ecf32119aa34dcdefbb0922f4ee85eac (patch)
treeaaca3032ecdebdbee280f7f9aad8793977601c3d /snprintf.c
parent4ef3ef584fb67548b01dfc4d6ce7308138cab264 (diff)
Include <string.h> to declare string functions that we use.
svn path=/trunk/; revision=3695
Diffstat (limited to 'snprintf.c')
-rw-r--r--snprintf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/snprintf.c b/snprintf.c
index 4f899dd374..233c0cd024 100644
--- a/snprintf.c
+++ b/snprintf.c
@@ -1,5 +1,5 @@
/*
- * $Id: snprintf.c,v 1.12 2000/11/21 21:24:52 guy Exp $
+ * $Id: snprintf.c,v 1.13 2001/07/12 07:06:25 guy Exp $
*/
/*
@@ -48,6 +48,7 @@
#endif
#include <stdlib.h> /* for atoi and for size_t */
+#include <string.h>
#include <ctype.h>
#include "snprintf.h"