mirror of
https://github.com/fluencelabs/musl
synced 2025-06-08 20:41:35 +00:00
13 lines
139 B
C
13 lines
139 B
C
|
#ifdef SHARED
|
||
|
|
||
|
#include "version.h"
|
||
|
|
||
|
static const char version[] = VERSION;
|
||
|
|
||
|
const char *__libc_get_version()
|
||
|
{
|
||
|
return version;
|
||
|
}
|
||
|
|
||
|
#endif
|