summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-02-17 03:30:08 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-02-17 03:30:08 +0000
commit0f7b6eff46164271d5fde81a9eec3d060c7fd615 (patch)
tree068fde0769fd277cdbdbceda0b6a3eaa0f8ea073 /c
parent2011-02-16 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-0f7b6eff46164271d5fde81a9eec3d060c7fd615.tar.bz2
2011-02-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* new-exceptions/bspsupport/vectors.h: Add extern "C" {}.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/powerpc/ChangeLog4
-rw-r--r--c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/vectors.h8
2 files changed, 12 insertions, 0 deletions
diff --git a/c/src/lib/libcpu/powerpc/ChangeLog b/c/src/lib/libcpu/powerpc/ChangeLog
index 4df2cce276..f41af2658d 100644
--- a/c/src/lib/libcpu/powerpc/ChangeLog
+++ b/c/src/lib/libcpu/powerpc/ChangeLog
@@ -1,3 +1,7 @@
+2011-02-17 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * new-exceptions/bspsupport/vectors.h: Add extern "C" {}.
+
2011-02-16 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/include/powerpc-utility.h: Fixed LINKER_SYMBOL() for
diff --git a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/vectors.h b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/vectors.h
index 7a64bb2d43..278d5af5ec 100644
--- a/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/vectors.h
+++ b/c/src/lib/libcpu/powerpc/new-exceptions/bspsupport/vectors.h
@@ -39,6 +39,10 @@
#include <libcpu/powerpc-utility.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* @defgroup ppc_exc PowerPC Exceptions
*
@@ -506,4 +510,8 @@ typedef exception_handler_t cpuExcHandlerType;
#endif /* ASM */
+#ifdef __cplusplus
+}
+#endif
+
#endif /* LIBCPU_VECTORS_H */