From 0f7b6eff46164271d5fde81a9eec3d060c7fd615 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 17 Feb 2011 03:30:08 +0000 Subject: [PATCH] =?UTF-8?q?2011-02-17=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * new-exceptions/bspsupport/vectors.h: Add extern "C" {}. --- c/src/lib/libcpu/powerpc/ChangeLog | 4 ++++ .../libcpu/powerpc/new-exceptions/bspsupport/vectors.h | 8 ++++++++ 2 files changed, 12 insertions(+) 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 + + * new-exceptions/bspsupport/vectors.h: Add extern "C" {}. + 2011-02-16 Sebastian Huber * 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 +#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 */