diff options
author | Christophe Grenier <[email protected]> | 2020-10-04 10:30:20 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2020-10-04 10:30:20 +0200 |
commit | 25c8dba564b21e6a6995b6e6c8047b2b3fe5c34c (patch) | |
tree | 248448fdd34689c26d9a2d2896ecac60e8fd4a68 /src/ntfs_fix.h | |
parent | fb96d07f8c91e1ca8ee222eae327d42893fd1ace (diff) |
Add an header guard to prevent multiple inclusion
Diffstat (limited to 'src/ntfs_fix.h')
-rw-r--r-- | src/ntfs_fix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ntfs_fix.h b/src/ntfs_fix.h index 057efc15..cb69c15b 100644 --- a/src/ntfs_fix.h +++ b/src/ntfs_fix.h @@ -19,6 +19,8 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifndef _NTFS_FIX_H +#define _NTFS_FIX_H #ifdef __cplusplus extern "C" { #endif @@ -28,3 +30,4 @@ int repair_MFT(disk_t *disk_car, partition_t *partition, const int verbose, cons #ifdef __cplusplus } /* closing brace for extern "C" */ #endif +#endif |