mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Both Subsurface and Subsurface-mobile will share the same version number moving forward. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
13 lines
223 B
C
13 lines
223 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;
|
|
}
|
|
|