diff options
author | Christophe Grenier <[email protected]> | 2020-09-11 12:58:00 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2020-09-11 12:58:00 +0200 |
commit | 79e2b889daf9992e4ed2c08b572a1544d62ed119 (patch) | |
tree | b145c002378162534b656bfb1c622acf9ee53318 /src/file_fob.c | |
parent | 4ba942d12e7094004074b6808f2532b8f877019e (diff) |
PhotoRec: add an ifdef in each file for easier frama-c testing
Diffstat (limited to 'src/file_fob.c')
-rw-r--r-- | src/file_fob.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/file_fob.c b/src/file_fob.c index c96f1bc1..35b8362a 100644 --- a/src/file_fob.c +++ b/src/file_fob.c @@ -20,6 +20,7 @@ */ +#if !defined(SINGLE_FORMAT) || defined(SINGLE_FORMAT_fob) #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -72,3 +73,4 @@ static void register_header_check_fob(file_stat_t *file_stat) register_header_check(0, "Table ", 6, &header_check_fob, file_stat); register_header_check(0, "XMLport ", 8, &header_check_fob, file_stat); } +#endif |