* src/version.h: Add header guard

This commit is contained in:
Tim Rühsen 2018-05-08 10:10:44 +02:00
parent 7eff94e881
commit 77286a2e03

View File

@ -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 */