authorgravatar for m@pyc.acDubbleClick <m@pyc.ac> 2025-07-16 19:28:02+07:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-07-16 19:18:15+02:00
logc7bcdb4802c2a492abb40f292a7694f0511e7691
treeac6ee5e0e71ac5aaeafcbc24e5f47401132259b2
parent7d63e777a49cbd6a906faa80bcde41346ad70546

fix glibc version for single_threaded.h (2.32 instead of 2.35)


1 files changed, 4 insertions(+), 4 deletions(-)

lib/libc/include/generic-glibc/sys/single_threaded.h+4-4
...@@ -16,10 +16,10 @@...@@ -16,10 +16,10 @@
16 License along with the GNU C Library; if not, see16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */17 <https://www.gnu.org/licenses/>. */
1818
19// zig patch: sys/single_threaded.h header was added in glibc 2.3519// zig patch: sys/single_threaded.h header was added in glibc 2.32
20#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 3520#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 32
21 #error "sys/single_threaded.h did not exist before glibc 2.35"21 #error "sys/single_threaded.h did not exist before glibc 2.32"
22#endif /* error for glibc before 2.35 */22#endif /* error for glibc before 2.32 */
2323
24#ifndef _SYS_SINGLE_THREADED_H24#ifndef _SYS_SINGLE_THREADED_H
25#define _SYS_SINGLE_THREADED_H25#define _SYS_SINGLE_THREADED_H