subsurface/core/version.c
Dirk Hohndel b368ecd5aa Add SPDX header to remaining core files
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2017-04-29 13:32:55 -07:00

19 lines
334 B
C

// SPDX-License-Identifier: GPL-2.0
#include "ssrf-version.h"
const char *subsurface_git_version(void)
{
return GIT_VERSION_STRING;
}
const char *subsurface_canonical_version(void)
{
return CANONICAL_VERSION_STRING;
}
#ifdef SUBSURFACE_MOBILE
const char *subsurface_mobile_version(void)
{
return MOBILE_VERSION_STRING;
}
#endif