summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/malloc.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-06-03 03:39:59 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-06-03 03:39:59 +0000
commitdda372da19aad60a8e39c674792d9398310dc889 (patch)
tree2738477131f2d34dc212c58ce7ed3dc99c11c6bf /cpukit/libcsupport/include/rtems/malloc.h
parentAs per Freescale chip errata, disable buffered writes. (diff)
downloadrtems-dda372da19aad60a8e39c674792d9398310dc889.tar.bz2
Add extern "C" {} guards.
Diffstat (limited to 'cpukit/libcsupport/include/rtems/malloc.h')
-rw-r--r--cpukit/libcsupport/include/rtems/malloc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/libcsupport/include/rtems/malloc.h b/cpukit/libcsupport/include/rtems/malloc.h
index d5b5eb691d..d3018db73c 100644
--- a/cpukit/libcsupport/include/rtems/malloc.h
+++ b/cpukit/libcsupport/include/rtems/malloc.h
@@ -23,6 +23,10 @@
#include <stdint.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*
* Malloc Statistics Structure
*/
@@ -145,4 +149,8 @@ int rtems_memalign(
size_t size
);
+#ifdef __cplusplus
+}
+#endif
+
#endif