aboutsummaryrefslogtreecommitdiff
path: root/lib/debugcommands
diff options
context:
space:
mode:
authorDima Zavin <dima@android.com>2013-06-13 01:50:40 -0700
committerDima Zavin <dima@android.com>2013-08-05 10:04:29 -0700
commit36c77355330cd4f1f4767f4319d81b59623afd10 (patch)
treeda41eb86d0029b3c912eda79d00b1759b822e930 /lib/debugcommands
parente8a9b4b7a47682b59a214b2edad63a635c232a4e (diff)
downloadcommon-36c77355330cd4f1f4767f4319d81b59623afd10.tar.gz
[libc][stdio] cleanup printf definition and clients
Move implementation to stdio.c to sit next to the other stdio definitions that use the debug output functions. Keep the declaration of it, though, in printf.h to sit next to sprintf, etc. Don't include printf.h directly in other places, rely on stdio.h to properly pull in these functions. Change-Id: I357cb04a5c78185b8fde908193b672326c2ee542 Signed-off-by: Dima Zavin <dima@android.com>
Diffstat (limited to 'lib/debugcommands')
-rw-r--r--lib/debugcommands/debugcommands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugcommands/debugcommands.c b/lib/debugcommands/debugcommands.c
index 275f5bc5..5101469d 100644
--- a/lib/debugcommands/debugcommands.c
+++ b/lib/debugcommands/debugcommands.c
@@ -24,7 +24,7 @@
#include <ctype.h>
#include <debug.h>
#include <stdlib.h>
-#include <printf.h>
+#include <stdio.h>
#include <list.h>
#include <string.h>
#include <arch/ops.h>