diff options
Diffstat (limited to 'libcpp/include/symtab.h')
-rw-r--r-- | libcpp/include/symtab.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libcpp/include/symtab.h b/libcpp/include/symtab.h index e7c5937..e1bc00c 100644 --- a/libcpp/include/symtab.h +++ b/libcpp/include/symtab.h @@ -20,6 +20,11 @@ along with this program; see the file COPYING3. If not see #define LIBCPP_SYMTAB_H #include "obstack.h" + +#ifdef __cplusplus +extern "C" { +#endif + #ifndef GTY #define GTY(x) /* nothing */ #endif @@ -99,4 +104,8 @@ extern void ht_load (hash_table *ht, hashnode *entries, /* Dump allocation statistics to stderr. */ extern void ht_dump_statistics (hash_table *); +#ifdef __cplusplus +} +#endif + #endif /* LIBCPP_SYMTAB_H */ |