diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-10-28 16:13:28 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-10-28 16:13:28 +0000 |
commit | 581707811c1c24bb0676e7582c671548b8851436 (patch) | |
tree | 7d1263d1f0f2f606adef8c2aeb211910aa421ab0 /src/console | |
parent | d4e5c0a2282a2af05d620fb0f8806d42a998c6da (diff) |
Create lib.h for homeless prototypes.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4878 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/vsprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/console/vsprintf.c b/src/console/vsprintf.c index 7f3e33c3cc..c4c91115c2 100644 --- a/src/console/vsprintf.c +++ b/src/console/vsprintf.c @@ -20,6 +20,7 @@ */ #include <stdarg.h> +#include <string.h> #include <smp/spinlock.h> #include <console/vtxprintf.h> @@ -48,8 +49,6 @@ static int vsprintf(char *buf, const char *fmt, va_list args) return i; } -int sprintf(char *buf, const char *fmt, ...); - int sprintf(char *buf, const char *fmt, ...) { va_list args; |