1#include <gnu/libc-version.h>
2
3int main(void)
4{
5	const char *version = gnu_get_libc_version();
6
7	return (long)version;
8}
9