mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-07 05:40:05 +00:00
fd091d3f34
* libio/oldtmpfile.c: Use new macros from shlib-compat.h to define versions. * libio/iofdopen.c: Likewise. * libio/iofgetpos.c: Likewise. * libio/iofgetpos64.c: Likewise. * libio/iofopen.c: Likewise. * libio/iofsetpos.c: Likewise. * libio/iofsetpos64.c: Likewise. * libio/iopopen.c: Likewise. * libio/oldiofopen.c: Likewise. * libio/pclose.c: Likewise. * sysdeps/gnu/siglist.c: Likewise. * sysdeps/unix/sysv/linux/errlist.c: Likewise.
45 lines
1.6 KiB
C
45 lines
1.6 KiB
C
/* Copyright (C) 1993, 1995, 1996-1998, 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
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2, or (at
|
|
your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this library; see the file COPYING. If not, write to
|
|
the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
|
MA 02111-1307, USA.
|
|
|
|
As a special exception, if you link this library with files
|
|
compiled with a GNU compiler to produce an executable, this does
|
|
not cause the resulting executable to be covered by the GNU General
|
|
Public License. This exception does not however invalidate any
|
|
other reasons why the executable file might be covered by the GNU
|
|
General Public License. */
|
|
|
|
#include "libioP.h"
|
|
#include "stdio.h"
|
|
#include <errno.h>
|
|
#include <shlib-compat.h>
|
|
|
|
int
|
|
__new_pclose (fp)
|
|
FILE *fp;
|
|
{
|
|
#if 0
|
|
/* Does not actually test that stream was created by popen(). Instead,
|
|
it depends on the filebuf::sys_close() virtual to Do The Right Thing. */
|
|
if (fp is not a proc_file)
|
|
return -1;
|
|
#endif
|
|
return _IO_new_fclose (fp);
|
|
}
|
|
|
|
versioned_symbol (libc, __new_pclose, pclose, GLIBC_2_1);
|