diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-01-02 18:32:41 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-01-02 19:33:11 -0500 |
commit | 3b2c1067c56f234580145244530237071a1af46d (patch) | |
tree | 628dbb1eda8eb233ee9f33417f8a979a6046ef24 | |
parent | f0d4c378f07195c2313b20c6b7072c1735359814 (diff) | |
download | bfs-3b2c1067c56f234580145244530237071a1af46d.tar.xz |
config: Polyfill __NetBSD_Prereq__
-rw-r--r-- | src/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 7080fb6..7dd9dc2 100644 --- a/src/config.h +++ b/src/config.h @@ -149,6 +149,10 @@ # define __GLIBC_PREREQ(maj, min) false #endif +#ifndef __NetBSD_Prereq__ +# define __NetBSD_Prereq__(maj, min, patch) false +#endif + // Fundamental utilities /** |