summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-08 18:27:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-04-08 18:27:53 +0000
commit34fd7457004791f4583c38c9e764691d4d095f92 (patch)
tree1e96cd91d0e1b03df836242c75749ff2dd7305e9 /cpukit/include/rtems
parent2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-34fd7457004791f4583c38c9e764691d4d095f92.tar.bz2
2002-04-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/rtems/bspIo.h: Fix cpp-guards, remove references to i386.
Diffstat (limited to 'cpukit/include/rtems')
-rw-r--r--cpukit/include/rtems/bspIo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/include/rtems/bspIo.h b/cpukit/include/rtems/bspIo.h
index 0ff070c4c5..0e2cdfb713 100644
--- a/cpukit/include/rtems/bspIo.h
+++ b/cpukit/include/rtems/bspIo.h
@@ -3,7 +3,6 @@
* This include file contains declaration of interface that
* will be provided by the file contained in this directory.
*
- *
* COPYRIGHT (c) 1998 valette@crf.canon.fr
*
* The license and distribution terms for this file may be
@@ -12,8 +11,8 @@
*
* $Id$
*/
-#ifndef _LIBBSP_I386_SHARED_IO_BSP_IO_H
-#define _LIBBSP_I386_SHARED_IO_BSP_IO_H
+#ifndef _rtems_bspIo_h
+#define _rtems_bspIo_h
/*
* All the functions declared as extern after this comment
@@ -26,12 +25,13 @@ typedef char (*BSP_polling_getchar_function_type) (void);
extern BSP_output_char_function_type BSP_output_char;
extern BSP_polling_getchar_function_type BSP_poll_char;
+
/*
* All the function declared as extern after this comment
- * are available for each ix86 BSP by compiling and linking
+ * are available for each BSP by compiling and linking
* the files contained in this directory PROVIDED definition
* and initialisation of the previous variable are done.
*/
-void printk(char *fmt, ...);
+extern void printk(char *fmt, ...);
#endif