math: fix expf(-NAN) and exp2f(-NAN) to return -NAN instead of 0
[musl] / src / internal / version.c
1 #include "version.h"
2
3 static const char version[] = VERSION;
4
5 __attribute__((__visibility__("hidden")))
6 const char *__libc_get_version()
7 {
8         return version;
9 }