diff options
author | Roland McGrath <roland@gnu.org> | 2000-03-27 05:18:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-03-27 05:18:47 +0000 |
commit | 16710d582967555671fc8f4a188bbea7432f2e7d (patch) | |
tree | d5d70f9fa5a6fb14db92c24d6c40248f37cfd9f8 /libio/freopen.c | |
parent | 54f6cbb3795fbc9c65965a88e3cd2a60d05acc6d (diff) | |
download | glibc-16710d582967555671fc8f4a188bbea7432f2e7d.tar.gz glibc-16710d582967555671fc8f4a188bbea7432f2e7d.tar.xz glibc-16710d582967555671fc8f4a188bbea7432f2e7d.zip |
* dlfcn/dlopen.c: Use <shlib-compat.h> macros.
* dlfcn/dlopenold.c: Likewise. * nss/getXXbyYY_r.c: Likewise. * nss/getXXent_r.c: Likewise. * hurd/hurdinit.c: Likewise. * hurd/compat-20.c: Likewise. * libio/oldiofopen.c: Likewise. * libio/oldiofclose.c: Likewise. * libio/oldiofdopen.c: Likewise. * libio/oldfileops.c: Likewise. * libio/oldstdfiles.c: Likewise. * libio/oldiofsetpos.c: Likewise. * libio/oldiofgetpos.c: Likewise. * libio/oldiofgetpos64.c: Likewise. * libio/oldiofsetpos64.c: Likewise. * libio/oldiopopen.c: Likewise. * libio/oldpclose.c: Likewise. * libio/oldtmpfile.c: Likewise. * libio/freopen.c (freopen): Likewise. * libio/iofclose.c (_IO_new_fclose): Likewise.
Diffstat (limited to 'libio/freopen.c')
-rw-r--r-- | libio/freopen.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libio/freopen.c b/libio/freopen.c index 22f2434ecb..59b1726552 100644 --- a/libio/freopen.c +++ b/libio/freopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1993,95,96,97,98,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 @@ -31,6 +31,8 @@ extern void *_IO_stdin_used; weak_extern (_IO_stdin_used); #endif +#include <shlib-compat.h> + FILE* freopen (filename, mode, fp) const char* filename; @@ -43,7 +45,7 @@ freopen (filename, mode, fp) return NULL; _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp); _IO_flockfile (fp); -#if defined PIC && DO_VERSIONING +#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) if (&_IO_stdin_used == NULL) /* If the shared C library is used by the application binary which was linked against the older version of libio, we just use the |