Skip to content
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

Fix missing sys/types.h on musl libc #7769

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/sss_client/nss_mc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@
#define _NSS_MC_H_

#include <stdint.h>
#include <stdbool.h>

Check warning on line 26 in src/sss_client/nss_mc.h

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <stdbool.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <pwd.h>

Check warning on line 27 in src/sss_client/nss_mc.h

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <pwd.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <grp.h>

Check warning on line 28 in src/sss_client/nss_mc.h

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <grp.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <sys/types.h>

Check warning on line 29 in src/sss_client/nss_mc.h

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: <sys/types.h> not found. Please note: Cppcheck does not need standard library headers to get proper results.

#include "config.h"

Check warning on line 31 in src/sss_client/nss_mc.h

View workflow job for this annotation

GitHub Actions / cppcheck

Include file: "config.h" not found.
#if HAVE_PTHREAD
#include <pthread.h>
#endif
Expand Down
Loading