From 91d96cd49ef320f23addc837e74b7d4580418418 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 17 Feb 2011 03:30:18 +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 6ef0df77da..53734aac20 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-02 Ralf Corsépius * configure.ac: Require autoconf-2.68, automake-1.11.1. 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 da12be1a64..e34255ec2d 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 * @@ -502,4 +506,8 @@ typedef exception_handler_t cpuExcHandlerType; #endif /* ASM */ +#ifdef __cplusplus +} +#endif + #endif /* LIBCPU_VECTORS_H */