diff options
Diffstat (limited to 'libio/oldiofdopen.c')
-rw-r--r-- | libio/oldiofdopen.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libio/oldiofdopen.c b/libio/oldiofdopen.c index 613c3330e4..ed3a220e41 100644 --- a/libio/oldiofdopen.c +++ b/libio/oldiofdopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1994, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1993,94,97,99,2000 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or @@ -23,6 +23,9 @@ other reasons why the executable file might be covered by the GNU General Public License. */ +#include <shlib-compat.h> +#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) + #define _IO_USE_OLD_IO_FILE #ifdef __STDC__ # include <stdlib.h> @@ -131,5 +134,7 @@ _IO_old_fdopen (fd, mode) } strong_alias (_IO_old_fdopen, __old_fdopen) -symbol_version (_IO_old_fdopen, _IO_fdopen, GLIBC_2.0); -symbol_version (__old_fdopen, fdopen, GLIBC_2.0); +compat_symbol (libc, _IO_old_fdopen, _IO_fdopen, GLIBC_2_0); +compat_symbol (libc, __old_fdopen, fdopen, GLIBC_2_0); + +#endif |