2017-04-27 18:24:53 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-02-15 18:25:18 +00:00
|
|
|
#include "ssrf-version.h"
|
|
|
|
|
2024-01-05 04:44:31 +00:00
|
|
|
// let's leave the two redundant functions in case we change our minds on git SHAs
|
2024-04-23 07:13:56 +00:00
|
|
|
extern "C" const char *subsurface_git_version(void)
|
2015-02-15 18:25:18 +00:00
|
|
|
{
|
2024-01-05 04:44:31 +00:00
|
|
|
return CANONICAL_VERSION_STRING_4;
|
2015-02-15 18:25:18 +00:00
|
|
|
}
|
|
|
|
|
2024-04-23 07:13:56 +00:00
|
|
|
extern "C" const char *subsurface_canonical_version(void)
|
2015-02-15 18:25:18 +00:00
|
|
|
{
|
|
|
|
return CANONICAL_VERSION_STRING;
|
|
|
|
}
|