glibc_version 0.1.2

Discover GNU libc version at build time
Documentation

`glibc_version`
===============

Crate to help rust projects discover GNU libc version at build time. Expected
to be used in `build.rs`.


Usage
-----

```rust
let ver = glibc_version::get_version().unwrap();
println!("glic version: {}.{}", ver.major, ver.minor);
```