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/lvm.h | |
parent | 38ce28702691b4adc56898262a09cd1f0500a681 (diff) |
Modify header files for C function declaration if C++ compilation
Diffstat (limited to 'src/lvm.h')
-rw-r--r-- | src/lvm.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -21,6 +21,9 @@ #ifndef _LVM_H #define _LVM_H +#ifdef __cplusplus +extern "C" { +#endif /* * structs & defines gathered from LVM 0.7/0.9 lvm.h and liblvm.h @@ -118,4 +121,7 @@ struct lvm2_pv_header { int check_LVM2(disk_t *disk_car,partition_t *partition,const int verbose); int recover_LVM2(disk_t *disk_car, const unsigned char *buf,partition_t *partition,const int verbose, const int dump_ind); +#ifdef __cplusplus +} /* closing brace for extern "C" */ +#endif #endif /* _LVM_H */ |