From d02cf26a564aa36e04a97b5b22b74efd3b04c4a7 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 20 Sep 2001 08:47:41 +0000 Subject: [PATCH] Now that the compat4x libc.so.4 binary has been updated, we can finally switch over to using a future-proof stdin/out/err. Note that if you run 4.x binaries on your system, you will certainly want to update /usr/lib/compat/libc.so.4. The easiest way is to add "COMPAT4X= yes" in your /etc/make.conf. --- include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdio.h b/include/stdio.h index d60ed88a8d88..e54deeaec40e 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -198,7 +198,7 @@ __END_DECLS #endif /* To be removed by 5.0-RELEASE */ -#if (defined(__i386__) || defined(__alpha__)) && !defined(_FIXED_STDIO) +#if (defined(__i386__) || defined(__alpha__)) && defined(_OLD_STDIO) #define stdin (&__sF[0]) #define stdout (&__sF[1]) #define stderr (&__sF[2])