diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 22:54:44 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-27 22:54:44 +0200 |
commit | ba4811b1d2ac5a9d363e6000c83098f2eb885119 (patch) | |
tree | 776184456b7a9181cd29bf23e0e214e5a67dd462 /include/fstree.h | |
parent | 2f1b5d44343aac079af2671e97aa3ffd5c7e4b66 (diff) |
Add a header for platform compatibillity fluff
- We don't have "endian.h" everywhere. On some BSDs its in sys and
on some BSDs the macros have different names.
- We definitely don't have sysmacros.h on non-Unix-like systems.
- Likewise for sys/types.h, sys/stat.h and their contents.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/fstree.h')
-rw-r--r-- | include/fstree.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/fstree.h b/include/fstree.h index dbd2cd6..337b598 100644 --- a/include/fstree.h +++ b/include/fstree.h @@ -9,14 +9,13 @@ #include "config.h" -#include <sys/types.h> -#include <sys/stat.h> #include <stdbool.h> #include <stdint.h> #include <stddef.h> #include <stdio.h> #include "str_table.h" +#include "compat.h" #define FSTREE_XATTR_KEY_BUCKETS 31 #define FSTREE_XATTR_VALUE_BUCKETS 511 |