diff options
| author | Grzegorz Kostka <kostka.grzegorz@gmail.com> | 2016-08-19 11:21:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-19 11:21:11 +0200 |
| commit | 7f35ecb424c1990684c2d1a922467f1dde69c952 (patch) | |
| tree | ed246a039faeaaea083be704589846fdd72dc70c | |
| parent | 253f1096402014f3ec8bbc721eac2d9a9bf2677a (diff) | |
| parent | d7699491b09308bf6d1d6005dc020d096de0e0e2 (diff) | |
Merge pull request #12 from mmajewicz/extern_C_fix
ext4_block_group.h: fix lack of extern "C" closing brace
| -rw-r--r-- | include/ext4_block_group.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ext4_block_group.h b/include/ext4_block_group.h index 715967e..88e00a1 100644 --- a/include/ext4_block_group.h +++ b/include/ext4_block_group.h @@ -319,6 +319,10 @@ static inline void ext4_bg_clear_flag(struct ext4_bgroup *bg, uint32_t f) * @return Computed CRC16*/ uint16_t ext4_bg_crc16(uint16_t crc, const uint8_t *buffer, size_t len); +#ifdef __cplusplus +} +#endif + #endif /* EXT4_BLOCK_GROUP_H_ */ /** |
