]> git.lizzy.rs Git - rust.git/commit
auto merge of #17896 : mahkoh/rust/intmax, r=alexcrichton
authorbors <bors@rust-lang.org>
Fri, 24 Oct 2014 03:22:29 +0000 (03:22 +0000)
committerbors <bors@rust-lang.org>
Fri, 24 Oct 2014 03:22:29 +0000 (03:22 +0000)
commit00cc6d24099eb93ecfeb9bf807ab9e5130a01749
tree07b68e2bf4955b227e68a8c5168fea27bdd97d8d
parentc53f8a920ec065ed109e2834572645cc47a9e597
parent3ff7a3d4ec98bcb063d846aee6037ea48ba5a15d
auto merge of #17896 : mahkoh/rust/intmax, r=alexcrichton

Closes #17075

I don't know if this is correct. The easiest way to find out is to run the following program on all targets but I can't do it myself.
```c
#include <stdint.h>
#include <stdio.h>

int main(void)
{
if (sizeof(intmax_t) != 8) {
puts("ERROR");
return 1;
}
}
```
src/liblibc/lib.rs