Move vers_build_nr last to make all strings adjacent in binary image.
[bertos.git] / verstag.c
1 /*!
2  * \file
3  * <!--
4  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
5  * This file is part of DevLib - See devlib/README for information.
6  * -->
7  *
8  * \version $Id$
9  *
10  * \author Bernardo Innocenti <bernie@develer.com>
11  *
12  * \brief Define application version strings
13  */
14 #include "verstag.h"
15
16 /*
17  * "buildrev.h" is auto-generated by the build infrastructure,
18  * incrementing VERS_BUILD each time the project is rebuilt.
19  */
20 #include "buildrev.h"
21
22 const char vers_tag[] = VERS_TAG;
23 const char vers_build_str[] = _STRINGIZE(VERS_BUILD);
24 const char vers_host[] = VERS_HOST;
25 const int vers_build_nr = VERS_BUILD;
26