summaryrefslogtreecommitdiffstats
path: root/src/lang.h
diff options
context:
space:
mode:
authorChristophe Grenier <[email protected]>2020-10-04 12:12:23 +0200
committerChristophe Grenier <[email protected]>2020-10-04 12:12:23 +0200
commitb775d67b557a6732e896456b645d964c1511f61d (patch)
tree649d9434e2e81b4be835a4b38536b55de2292859 /src/lang.h
parent25c8dba564b21e6a6995b6e6c8047b2b3fe5c34c (diff)
Add an header guard to prevent multiple inclusion, some files were forgotten in previous commit.
Diffstat (limited to 'src/lang.h')
-rw-r--r--src/lang.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lang.h b/src/lang.h
index 3f43d489..207735be 100644
--- a/src/lang.h
+++ b/src/lang.h
@@ -19,6 +19,8 @@
Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#ifndef _LANG_H
+#define _LANG_H
#define msg_DUMP_HEXA "Dump Hexa\n"
#define c_YES 'Y'
@@ -56,3 +58,4 @@
#define msg_MBR_ORDER_GOOD "Partitions order: Ok "
#define msg_MBR_ORDER_BAD "Partitions order: Bad"
#define msg_NO_EXT_PART "No extended partition\n"
+#endif