diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-07 13:24:43 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-07 15:13:28 -0400 |
commit | 9413c9b1bc2ab2e47bcb75257a2eece090cc3a3b (patch) | |
tree | 09dcce2bf87d810b51581c666c908c5821dccaae /src | |
parent | 3908e7ef7ecaffd7b54228d09baeb1db83b0e45d (diff) | |
download | bfs-9413c9b1bc2ab2e47bcb75257a2eece090cc3a3b.tar.xz |
prelude: Kill #include <sys/param.h>
We don't check for `BSD` anymore.
Diffstat (limited to 'src')
-rw-r--r-- | src/prelude.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/prelude.h b/src/prelude.h index fbdc85c..72f88b0 100644 --- a/src/prelude.h +++ b/src/prelude.h @@ -127,13 +127,6 @@ extern const char bfs_version[]; # define __has_attribute(attr) false #endif -// Platform detection - -// Get the definition of BSD if available -#if BFS_USE_SYS_PARAM_H -# include <sys/param.h> -#endif - // Fundamental utilities /** |