From ef4669c5a58bc8d1c294c69e8641eaac2b5a49c0 Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Wed, 15 May 2013 18:23:50 +0200 Subject: [PATCH] Avoid double inclusion --- src/filegen.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/filegen.h b/src/filegen.h index 436ae18e..c29eaeac 100644 --- a/src/filegen.h +++ b/src/filegen.h @@ -19,6 +19,8 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifndef _TESTDISK_FILEGEN_H +#define _TESTDISK_FILEGEN_H #ifdef __cplusplus extern "C" { #endif @@ -142,3 +144,4 @@ void file_rename_unicode(const char *old_filename, const void *buffer, const int #ifdef __cplusplus } /* closing brace for extern "C" */ #endif +#endif