Closed tomshen closed 10 years ago
libc is no longer in std::libc but in an external crate, so I changed that. Additionally, since fields in a struct are private by default, and since the compiler now flags unnecessary privs as errors, I removed the privs in gmp.rs.
libc
std::libc
priv
gmp.rs
libc
is no longer instd::libc
but in an external crate, so I changed that. Additionally, since fields in a struct are private by default, and since the compiler now flags unnecessarypriv
s as errors, I removed thepriv
s ingmp.rs
.