mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
ff026950e2
Add a C wrapper to pass arguments in /* Control process execution. */ extern int prctl (int __option, ...) __THROW; to prctl syscall: extern int prctl (int, unsigned long int, unsigned long int, unsigned long int, unsigned long int);
11 lines
167 B
C
11 lines
167 B
C
#ifndef _SYS_PRCTL_H
|
|
#include_next <sys/prctl.h>
|
|
|
|
# ifndef _ISOMAC
|
|
|
|
extern int __prctl (int __option, ...);
|
|
libc_hidden_proto (__prctl)
|
|
|
|
# endif /* !_ISOMAC */
|
|
#endif
|