summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-15 13:30:36 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-15 13:30:36 -0400
commit73b86f3cf5c14031ad8e786f75025b4f5a790993 (patch)
tree0b5c5cdca7489879e051446f1b42b8782b864b11 /src
parent6725c2ed06e24d1c4c0e7329d0ad3c59896be995 (diff)
add missing header
Diffstat (limited to 'src')
-rw-r--r--src/pwd/getpwent.c11
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"