summaryrefslogtreecommitdiff
path: root/support/regression/tests/version.c
blob: 13791625687c129e0a3be3d63069ef6e7d080969 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Ensure version macros are present
 */

#include <testfwk.h>

#ifdef __SDCC
unsigned int major = __SDCC_VERSION_MAJOR;
unsigned int minor = __SDCC_VERSION_MINOR;
unsigned int patch = __SDCC_VERSION_PATCH;
unsigned int revision = __SDCC_REVISION;
#endif

void testVersion(void)
{
}