musl - an implementation of the standard library for Linux-based systems
blob: 0d6e1f8206fb21bc860ceefd424718dc6e40b6d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "version.h"
#include "libc.h"
static const char version[] = VERSION;
hidden const char *__libc_get_version()
{
return version;
}
|