Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: bb176f67090ca54869fc1262c913aa69d2ede070 authored by Linus Torvalds on 23 October 2017, 10:49:47 UTC
Linux 4.14-rc6
Tip revision: bb176f6
test-glibc.c
#include <stdlib.h>

#if !defined(__UCLIBC__)
#include <gnu/libc-version.h>
#else
#define XSTR(s) STR(s)
#define STR(s) #s
#endif

int main(void)
{
#if !defined(__UCLIBC__)
	const char *version = gnu_get_libc_version();
#else
	const char *version = XSTR(__GLIBC__) "." XSTR(__GLIBC_MINOR__);
#endif

	return (long)version;
}
back to top