aboutsummaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-09-20 08:47:41 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-09-20 08:47:41 +0000
commitd02cf26a564aa36e04a97b5b22b74efd3b04c4a7 (patch)
tree4d615ebec629f651b526cf60a0d24f2ad3ddaea7 /include/stdio.h
parentdadb6c3bb0007be70fa6be26be3c59ea52f53b45 (diff)
downloadsrc-d02cf26a564aa36e04a97b5b22b74efd3b04c4a7.tar.gz
src-d02cf26a564aa36e04a97b5b22b74efd3b04c4a7.zip
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.
Notes
Notes: svn path=/head/; revision=83712
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h2
1 files changed, 1 insertions, 1 deletions
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])