diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 20:00:37 -0400 |
| commit | 73da506ee04ec490c5959b45c216a1f8508bec5b (patch) | |
| tree | f356a994826be58341695dca611c3f324b511413 /src/grp/getgrent.c | |
| parent | d82a95f6e907652151f658d140fcd47a26b70976 (diff) | |
consistently use <> for standardized headers
Diffstat (limited to 'src/grp/getgrent.c')
| -rw-r--r-- | src/grp/getgrent.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/grp/getgrent.c b/src/grp/getgrent.c index 417e1ba2..84dd57bb 100644 --- a/src/grp/getgrent.c +++ b/src/grp/getgrent.c @@ -3,13 +3,12 @@ #define _POSIX_C_SOURCE 2 #endif -#include "sys/types.h" +#include <sys/types.h> #include <grp.h> -#include "stdlib.h" -#include "stddef.h" -#include "stdio.h" -#include "limits.h" -#include "string.h" +#include <stdlib.h> +#include <stdio.h> +#include <limits.h> +#include <string.h> #include "_config.h" #include "_grp.h" |
