We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On Solaris (well, OmniOS), the interface translator seems to be picking up the following prototype for getpwuid_r from /usr/include/pwd.h:
extern struct passwd *getpwuid_r(uid_t, struct passwd *, char *, int);
It's be good to somehow get the standard one instead
extern int getpwuid_r(uid_t, struct passwd *, char *, size_t, struct passwd **);
Maybe there's some way we can make it through the #ifdef maze, but maybe not.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Solaris (well, OmniOS), the interface translator seems to be picking up the following prototype for getpwuid_r from /usr/include/pwd.h:
It's be good to somehow get the standard one instead
Maybe there's some way we can make it through the #ifdef maze, but maybe not.
The text was updated successfully, but these errors were encountered: