Release 4.7 tools/build/feature/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;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
petri gynther | petri gynther | 26 | 55.32% | 1 | 50.00% |
ingo molnar | ingo molnar | 21 | 44.68% | 1 | 50.00% |
| Total | 47 | 100.00% | 2 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
petri gynther | petri gynther | 54 | 69.23% | 1 | 50.00% |
ingo molnar | ingo molnar | 24 | 30.77% | 1 | 50.00% |
| Total | 78 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.