diff options
Diffstat (limited to 'gcc/ada/initialize.c')
-rw-r--r-- | gcc/ada/initialize.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gcc/ada/initialize.c b/gcc/ada/initialize.c index e2ad904..90f35a0 100644 --- a/gcc/ada/initialize.c +++ b/gcc/ada/initialize.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 1992-2009, Free Software Foundation, Inc. * + * Copyright (C) 1992-2011, Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -32,10 +32,14 @@ /* This unit provides default implementation for __gnat_initialize () which is called before the elaboration of the partition. It is provided in a separate file/object so that users can replace it easily. - The default implementation should be null on most targets. */ + The default implementation should be null on most targets. */ + +#ifdef __cplusplus +extern "C" { +#endif /* The following include is here to meet the published VxWorks requirement - that the __vxworks header appear before any other include. */ + that the __vxworks header appear before any other include. */ #ifdef __vxworks #include "vxWorks.h" #endif @@ -359,3 +363,7 @@ __gnat_initialize (void *eh ATTRIBUTE_UNUSED) } #endif + +#ifdef __cplusplus +} +#endif |