add infrastructure to record and report the version of libc.so
[musl] / src / internal / version.c
1 #ifdef SHARED
2
3 #include "version.h"
4
5 static const char version[] = VERSION;
6
7 const char *__libc_get_version()
8 {
9         return version;
10 }
11
12 #endif