From 80c2966f4b2d987dc77c098b81176da79588ccd5 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 18 Jun 2006 06:28:22 +0000 Subject: [PATCH] =?UTF-8?q?2006-06-18=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/include/rtems/libio.h: Add extern "C" {}. --- cpukit/ChangeLog | 4 ++++ cpukit/libcsupport/include/rtems/libio.h | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index fc23f6f8f3..c8793dd3c5 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2006-06-18 Ralf Corsépius + + * libcsupport/include/rtems/libio.h: Add extern "C" {}. + 2006-06-18 Ralf Corsépius * posix/src/mqueue.c: Remove duplicate #include . diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h index 617cc41ec8..4b5e000bea 100644 --- a/cpukit/libcsupport/include/rtems/libio.h +++ b/cpukit/libcsupport/include/rtems/libio.h @@ -34,6 +34,10 @@ #include +#ifdef __cplusplus +extern "C" { +#endif + /* * Valid RTEMS file types. */ @@ -634,4 +638,8 @@ typedef struct { extern rtems_filesystem_mount_table_t *rtems_filesystem_mount_table; extern int rtems_filesystem_mount_table_size; +#ifdef __cplusplus +} +#endif + #endif /* _RTEMS_LIBIO_H */