Skip to content

Instantly share code, notes, and snippets.

@j2doll
Created August 20, 2017 08:15
Show Gist options
  • Select an option

  • Save j2doll/1c818e3f1044922a6ad367bb55328812 to your computer and use it in GitHub Desktop.

Select an option

Save j2doll/1c818e3f1044922a6ad367bb55328812 to your computer and use it in GitHub Desktop.
Get the version of GNU C Library
// get_libc_ver.cpp
// http://j2doll.tistory.com/467
#include <stdio.h>
#include <gnu/libc-version.h>
int main (int argc, char* argv[])
{
puts (gnu_get_libc_version ());
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment