summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-05-07 13:24:43 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-05-07 15:13:28 -0400
commit9413c9b1bc2ab2e47bcb75257a2eece090cc3a3b (patch)
tree09dcce2bf87d810b51581c666c908c5821dccaae
parent3908e7ef7ecaffd7b54228d09baeb1db83b0e45d (diff)
downloadbfs-9413c9b1bc2ab2e47bcb75257a2eece090cc3a3b.tar.xz
prelude: Kill #include <sys/param.h>
We don't check for `BSD` anymore.
-rw-r--r--src/prelude.h7
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
/**