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