diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 13:30:36 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 13:30:36 -0400 |
| commit | 73b86f3cf5c14031ad8e786f75025b4f5a790993 (patch) | |
| tree | 0b5c5cdca7489879e051446f1b42b8782b864b11 /src/pwd | |
| parent | 6725c2ed06e24d1c4c0e7329d0ad3c59896be995 (diff) | |
add missing header
Diffstat (limited to 'src/pwd')
| -rw-r--r-- | src/pwd/getpwent.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/pwd/getpwent.c b/src/pwd/getpwent.c index 6022d54d..c2718692 100644 --- a/src/pwd/getpwent.c +++ b/src/pwd/getpwent.c @@ -1,9 +1,10 @@ -#include "sys/types.h" +#include <sys/types.h> #include <pwd.h> -#include "stddef.h" -#include "stdio.h" -#include "limits.h" -#include "string.h" +#include <stdlib.h> +#include <stddef.h> +#include <stdio.h> +#include <limits.h> +#include <string.h> #include "_config.h" #include "_pwd.h" |
