From fe9f50e3e2a901092f53ae2ea98cc6db59cee819 Mon Sep 17 00:00:00 2001 From: asterix Date: Mon, 26 May 2008 09:17:25 +0000 Subject: [PATCH] Fix header guard. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1353 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/verstag.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bertos/verstag.h b/bertos/verstag.h index a37bcc11..756f72aa 100644 --- a/bertos/verstag.h +++ b/bertos/verstag.h @@ -37,10 +37,11 @@ * * \brief Declare application version strings */ -#ifndef DEVLIB_VERSTAG_H -#define DEVLIB_VERSTAG_H -#ifndef ARCH_CONFIG_H +#ifndef BERTOS_VERSTAG_H +#define BERTOS_VERSTAG_H + +#ifndef CFG_ARCH_CONFIG_H #include #endif @@ -100,4 +101,4 @@ extern const int vers_build_nr; /** Hostname of the machine used to build this binary (contains VERS_HOST) */ extern const char vers_host[]; -#endif /* DEVLIB_VERSTAG_H */ +#endif /* BERTOS_VERSTAG_H */ -- 2.25.1