diff options
author | louie <lshprung@yahoo.com> | 2020-12-28 15:34:29 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-28 15:34:29 -0800 |
commit | b8209a2349ffb2153e0c17f43412f2c9906aa8d0 (patch) | |
tree | a816b35e8c38b64aad1c00e6ae6a68a00aa282f0 /group.c | |
parent | 9fa266e62dc0782f7c2125f18fed2668ea414b29 (diff) |
Moved headers to separate directory
Diffstat (limited to 'group.c')
-rw-r--r-- | group.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,10 +4,10 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include "entry.h" -#include "group.h" -#include "read_cfg.h" -#define BUF_LEN 1024 + +#include "include/entry.h" +#include "include/group.h" +#include "include/read_cfg.h" typedef struct group{ char name[BUF_LEN]; |