blob: ffb27835010e6deac0f0993de79e6712fadb23cc (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef HOS_SUITE_VERSION_H
#define HOS_SUITE_VERSION_H
#define HOS_CORE_MAJOR "0"
#define HOS_CORE_MINOR "1"
#define HOS_CORE_PATCH "0"
#define HOS_CORE_VERSION HOS_CORE_MAJOR "." HOS_CORE_MINOR "." HOS_CORE_PATCH
#endif
|