changeset 477:943df9002d27

include: there's no reason to not include the printf extern defs in string.h Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Thu, 14 Apr 2011 12:23:54 -0400
parents 6c67834cf2b7
children bf0ceeaf8532
files include/string.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/include/string.h	Thu Apr 14 12:20:04 2011 -0400
+++ b/include/string.h	Thu Apr 14 12:23:54 2011 -0400
@@ -8,6 +8,8 @@
 #ifndef __STRING_H
 #define __STRING_H
 
+#include <vsprintf.h>
+
 #define memset(d,s,l)	__builtin_memset((d),(s),(l))
 #define memcpy(d,s,l)	__builtin_memcpy((d),(s),(l))
 extern void *memmove(void *dest, const void *src, size_t count);