summaryrefslogtreecommitdiffstats
path: root/src/file_found.h
diff options
context:
space:
mode:
authorChristophe Grenier <[email protected]>2020-10-04 10:30:20 +0200
committerChristophe Grenier <[email protected]>2020-10-04 10:30:20 +0200
commit25c8dba564b21e6a6995b6e6c8047b2b3fe5c34c (patch)
tree248448fdd34689c26d9a2d2896ecac60e8fd4a68 /src/file_found.h
parentfb96d07f8c91e1ca8ee222eae327d42893fd1ace (diff)
Add an header guard to prevent multiple inclusion
Diffstat (limited to 'src/file_found.h')
-rw-r--r--src/file_found.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/file_found.h b/src/file_found.h
index 9634783a..e03f3194 100644
--- a/src/file_found.h
+++ b/src/file_found.h
@@ -19,6 +19,8 @@
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#ifndef _FILE_FOUND_H
+#define _FILE_FOUND_H
#ifdef __cplusplus
extern "C" {
#endif
@@ -28,3 +30,4 @@ alloc_data_t *file_found(alloc_data_t *current_search_space, const uint64_t offs
#ifdef __cplusplus
} /* closing brace for extern "C" */
#endif
+#endif