cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
petri gyntherpetri gynther2655.32%150.00%
ingo molnaringo molnar2144.68%150.00%
Total47100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
petri gyntherpetri gynther5469.23%150.00%
ingo molnaringo molnar2430.77%150.00%
Total78100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}