Skip to content

Avoid use of __errno_location

Nick Mathewson requested to merge nickm/rust-pwd-grp:no-errno-osx into main

This function only exists on linux libc (and similar), and isn't necessary. The recommended workaround is to use io::Error::raw_os_error() with io::Error::last_os_error().

Closes #2 (closed).

Merge request reports