summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-10-01 10:26:45 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2007-10-01 10:26:45 +0200
commitaaa71a12636ca0eb45a024683fed654ad1518bf6 (patch)
treefcc06e8a9621d3484efda8f38709457e70599cb0 /common
parent3847938e51fd198addb2cb56fabe345e04a246fe (diff)
downloadbarebox-aaa71a12636ca0eb45a024683fed654ad1518bf6.tar.gz
barebox-aaa71a12636ca0eb45a024683fed654ad1518bf6.tar.xz
Export symbols printf and the ones needed for getopt
Diffstat (limited to 'common')
-rw-r--r--common/console.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/console.c b/common/console.c
index 5fbd41eff5..685271ceb0 100644
--- a/common/console.c
+++ b/common/console.c
@@ -33,6 +33,7 @@
#include <init.h>
#include <clock.h>
#include <kfifo.h>
+#include <module.h>
static struct console_device *first_console = NULL;
@@ -309,7 +310,7 @@ int printf (const char *fmt, ...)
return i;
}
-
+EXPORT_SYMBOL(printf);
int vprintf (const char *fmt, va_list args)
{