version.c 141 B

123456789
  1. #include "version.h"
  2. #include "libc.h"
  3. static const char version[] = VERSION;
  4. hidden const char *__libc_get_version()
  5. {
  6. return version;
  7. }