mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 14:30:06 +00:00
faea9de6e0
* sysdeps/unix/sysv/sco3.2.4/waitpid.S: Add libc_hidden_def. * sysdeps/unix/sysv/sysv4/waitpid.c: Add libc_hidden_weak. * sysdeps/unix/sysv/linux/waitpid.c: Likewise. * sysdeps/unix/sysv/aix/waitpid.c: Likewise. * sysdeps/unix/bsd/bsd4.4/waitpid.c: Likewise. * sysdeps/generic/waitpid.c: Likewise. * include/net/if.h: New file. Use libc_hidden_proto for if_nametoindex and if_indextoname. * sysdeps/generic/if_index.c: Add libc_hidden_def. * sysdeps/mach/hurd/if_index.c: Likewise. * sysdeps/unix/sysv/linux/if_index.c: Likewise. * include/grp.h (setgroups): Add libc_hidden_proto. * sysdeps/generic/setgroups.c: Add libc_hidden_def. * sysdeps/mach/hurd/setgroups.c: Likewise. * sysdeps/unix/sysv/irix4/setgroups.c: Likewise. * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
17 lines
584 B
C
17 lines
584 B
C
#ifndef _SYS_WAIT_H
|
|
#include <posix/sys/wait.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern __pid_t __waitpid (__pid_t __pid, int *__stat_loc,
|
|
int __options);
|
|
libc_hidden_proto (__waitpid)
|
|
|
|
extern __pid_t __libc_waitpid (pid_t __pid, int *__stat_loc, int __options);
|
|
extern __pid_t __libc_wait (int *__stat_loc);
|
|
extern __pid_t __wait (__WAIT_STATUS __stat_loc);
|
|
extern __pid_t __wait3 (__WAIT_STATUS __stat_loc,
|
|
int __options, struct rusage * __usage);
|
|
extern __pid_t __wait4 (__pid_t __pid, __WAIT_STATUS __stat_loc,
|
|
int __options, struct rusage *__usage);
|
|
#endif
|