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 */