summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-24 11:56:35 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-07-24 14:54:03 +0200
commitd6b8db2f2f1eba65ebd3d09c396709aa1fea0549 (patch)
treee1596a2d5fb82f176428da572c37b65acd0f57c2
parentDefine IFCAP_NOMAP for Newlib compatibility (diff)
downloadrtems-libbsd-d6b8db2f2f1eba65ebd3d09c396709aa1fea0549.tar.bz2
stdio/local.h: Make Newlib config independent
-rw-r--r--freebsd/lib/libc/stdio/local.h2
1 files changed, 1 insertions, 1 deletions
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);