diff options
author | Christophe Grenier <[email protected]> | 2009-01-10 16:04:39 +0100 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2009-01-10 16:04:39 +0100 |
commit | 86f46991fb400a57d6c84699818dfeccfa08cc2a (patch) | |
tree | b4b66dfa6ce9ec06c4de918104054497ab38eae8 /src/lang.h | |
parent | 38ce28702691b4adc56898262a09cd1f0500a681 (diff) |
Modify header files for C function declaration if C++ compilation
Diffstat (limited to 'src/lang.h')
-rw-r--r-- | src/lang.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -65,5 +65,13 @@ #define msg_MBR_ORDER_BAD "Partitions order: Bad" #define msg_NO_EXT_PART "No extended partition\n" #define msg_ROOT_CLUSTER_RERR "\nroot_cluster: read error" + +#ifdef __cplusplus +extern "C" { +#endif + const unsigned char *partition_type(const unsigned char type, const struct systypes *parttype_name_table); +#ifdef __cplusplus +} /* closing brace for extern "C" */ +#endif |