diff options
Diffstat (limited to 'libio/oldiofsetpos.c')
-rw-r--r-- | libio/oldiofsetpos.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libio/oldiofsetpos.c b/libio/oldiofsetpos.c index 87a78d2..2637ab8 100644 --- a/libio/oldiofsetpos.c +++ b/libio/oldiofsetpos.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1993,95,97,98,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 @@ -26,6 +26,8 @@ #include <libioP.h> #include <errno.h> +#include <shlib-compat.h> +#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2) int _IO_old_fsetpos (fp, posp) _IO_FILE *fp; @@ -53,7 +55,9 @@ _IO_old_fsetpos (fp, posp) } #ifdef weak_alias -symbol_version (_IO_old_fsetpos, _IO_fsetpos, GLIBC_2.0); +compat_symbol (libc, _IO_old_fsetpos, _IO_fsetpos, GLIBC_2_0); strong_alias (_IO_old_fsetpos, __old_fsetpos) -symbol_version (__old_fsetpos, fsetpos, GLIBC_2.0); +compat_symbol (libc, __old_fsetpos, fsetpos, GLIBC_2_0); +#endif + #endif |