From d6b8db2f2f1eba65ebd3d09c396709aa1fea0549 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Sun, 24 Jul 2022 11:56:35 +0200 Subject: stdio/local.h: Make Newlib config independent --- freebsd/lib/libc/stdio/local.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freebsd/lib/libc/stdio/local.h b/freebsd/lib/libc/stdio/local.h index 6661f8de..5ec1d3f5 100644 --- a/freebsd/lib/libc/stdio/local.h +++ b/freebsd/lib/libc/stdio/local.h @@ -78,7 +78,7 @@ extern int __srefill(FILE *); */ extern int __srefill_r(struct _reent *,FILE *); -#define __srefill(_x) __srefill_r(__getreent(), _x) +#define __srefill(_x) __srefill_r(_REENT, _x) #endif /* __rtems__ */ extern int __sread(void *, char *, int); extern int __swrite(void *, char const *, int); -- cgit v1.2.3