diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-10 14:56:25 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-10 14:56:25 -0500 |
commit | 68ba9601cbc2d8eb9cfc87f386a0498d68d60fd5 (patch) | |
tree | ac5ad276b1b260bf4af2121c9f06cbe416137507 /src/sys | |
parent | ee5156bc966de2b63e61a32adda5d0af8dbaeac6 (diff) |
clean up a bit
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/stat/S_IFDIR.c | 2 | ||||
-rw-r--r-- | src/sys/stat/S_IFLNK.c | 2 | ||||
-rw-r--r-- | src/sys/stat/S_ISBLK.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/sys/stat/S_IFDIR.c b/src/sys/stat/S_IFDIR.c index 9e2c1652..c72702b2 100644 --- a/src/sys/stat/S_IFDIR.c +++ b/src/sys/stat/S_IFDIR.c @@ -1,5 +1,5 @@ #include <sys/stat.h> -#define S_IFDIR +#define S_IFDIR /* TODO */ /* XOPEN(4) */ diff --git a/src/sys/stat/S_IFLNK.c b/src/sys/stat/S_IFLNK.c index 681602f3..8948d050 100644 --- a/src/sys/stat/S_IFLNK.c +++ b/src/sys/stat/S_IFLNK.c @@ -1,5 +1,5 @@ #include <sys/stat.h> -#define S_IFLNK +#define S_IFLNK /* TODO */ /* XOPEN(400) */ diff --git a/src/sys/stat/S_ISBLK.c b/src/sys/stat/S_ISBLK.c index 1a1498ef..b2d0031b 100644 --- a/src/sys/stat/S_ISBLK.c +++ b/src/sys/stat/S_ISBLK.c @@ -1,4 +1,4 @@ -#includ +#include <sys/stat.h> #define S_ISBLK(s) /* FIXME */ /* POSIX(1) |