mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* libio/iopopen.c (_IO_new_proc_open): It's not kosher to use cfork instead of fork. * libio/oldiopopen.c (_IO_old_proc_open): Likewise.
This commit is contained in:
@ -45,9 +45,9 @@
|
||||
|
||||
#ifndef _IO_fork
|
||||
#ifdef _LIBC
|
||||
#define _IO_fork __vfork
|
||||
#define _IO_fork __fork
|
||||
#else
|
||||
#define _IO_fork vfork /* defined in libiberty, if needed */
|
||||
#define _IO_fork fork /* defined in libiberty, if needed */
|
||||
#endif
|
||||
extern _IO_pid_t _IO_fork __P ((void));
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user