musl - an implementation of the standard library for Linux-based systems
blob: 16554ba2266637ca0b3b7bcb200bc28c4cc9cf2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifdef SHARED
#include "version.h"
static const char version[] = VERSION;
const char *__libc_get_version()
{
return version;
}
#endif
|