diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 04:15:48 +0000 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2023-01-29 11:32:22 -0600 |
commit | 616f756ca82a0538cb98f8ab1e7cb0de7a09097f (patch) | |
tree | 2046a135610730917ccf00e48529600fef0a9393 /src/shared/wtmp.h | |
parent | 17cfb41d818ff39103f91b7f973eb749b27015e5 (diff) |
shared: missing includes from IWYU
Diffstat (limited to 'src/shared/wtmp.h')
-rw-r--r-- | src/shared/wtmp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/wtmp.h b/src/shared/wtmp.h index edab322c..9691b672 100644 --- a/src/shared/wtmp.h +++ b/src/shared/wtmp.h @@ -19,6 +19,7 @@ #define __RC_WTMP_H__ #include <utmp.h> +#include <sys/types.h> void log_wtmp(const char *user, const char *id, pid_t pid, int type, const char *line); |