-
Notifications
You must be signed in to change notification settings - Fork 673
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to libc definitons of errno constants #807
Conversation
9f5d329
to
288cb98
Compare
I think with this change all the constant checks done at the bottom of |
65df780
to
2a311a1
Compare
c90a6f3
to
f846cdf
Compare
This should be ready to merge once the FreeBSD tests pass. Note that there are more improvements that could be made to the errno code, but I wanted to restrict this PR to just using libc for constants and removing any unnecessary testing for it. |
Note that the check of the size of |
This was doing testing for errno constants and a few other types that is no longer necessary now that these types are all tested within the libc project itself.
Now that these constants are verified within libc, these tests are no longer necessary.
b017f8e
to
a79d228
Compare
bors r+ |
Still need to do OpenBSD and NetBSD. Primary goal with this first pass is to see what doesn't exist properly in
libc
.Closes #487.