From 77286a2e0340698f81f68c9c74923a81515d27b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Tue, 8 May 2018 10:10:44 +0200 Subject: [PATCH] * src/version.h: Add header guard --- src/version.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/version.h b/src/version.h index aeae086e..ee40bb1c 100644 --- a/src/version.h +++ b/src/version.h @@ -27,6 +27,9 @@ Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL used as well as that of the covered work. */ +#ifndef WGET_VERSION_H +#define WGET_VERSION_H + /* Extern declarations for strings in version.c */ extern const char *version_string; extern const char *compilation_string; @@ -34,3 +37,5 @@ extern const char *link_string; /* Extern declaration for string in build_info.c */ extern const char *compiled_features[]; + +#endif /* WGET_VERSION_H */