summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2002-10-30 19:47:03 +0000
committerEric Norum <WENorum@lbl.gov>2002-10-30 19:47:03 +0000
commit108bab3ee72cdc8f799b71987f7b4db442c5d287 (patch)
tree1fc52d7755647a85d2f593ef50e715a717eda2a6 /cpukit/include
parent2002-10-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-108bab3ee72cdc8f799b71987f7b4db442c5d287.tar.bz2
Add vprintk function for kernel printing from routines
which have already obtained the va_list pointer.
Diffstat (limited to 'cpukit/include')
-rw-r--r--cpukit/include/rtems/bspIo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpukit/include/rtems/bspIo.h b/cpukit/include/rtems/bspIo.h
index 0e2cdfb713..53618121f1 100644
--- a/cpukit/include/rtems/bspIo.h
+++ b/cpukit/include/rtems/bspIo.h
@@ -32,6 +32,8 @@ extern BSP_polling_getchar_function_type BSP_poll_char;
* the files contained in this directory PROVIDED definition
* and initialisation of the previous variable are done.
*/
+#include <stdarg.h>
+extern void vprintk(char *fmt, va_list ap);
extern void printk(char *fmt, ...);
#endif