]> git.lizzy.rs Git - rust.git/commitdiff
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)
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;
}
}
```

1  2 
src/liblibc/lib.rs

Simple merge