Skip to content

Instantly share code, notes, and snippets.

@ilansmith
Last active October 30, 2016 12:56
Show Gist options
  • Save ilansmith/a732f3fd494ca3cbcbd5127b40c5c499 to your computer and use it in GitHub Desktop.
Save ilansmith/a732f3fd494ca3cbcbd5127b40c5c499 to your computer and use it in GitHub Desktop.
Get glibc version
#include <stdio.h>
#include <gnu/libc-version.h>
int main (void)
{
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