A small macro to deal with the libc typedef hell.

Build Status

```rust

![feature(phase)]

extern crate core;

[phase(plugin)] extern crate checked_cast;

let foo: clong = -1; let bar: cuint = checkedcast!(a, cuint).unwrap(); // panic ```