blob: b0f41f5462176f2be6009648ef6062b0b9a2182c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _SYS_PRCTL_H
#define _SYS_PRCTL_H
#include <sys/types.h>
#include <klibc/extern.h>
#include <linux/prctl.h>
/* glibc has this as a varadic function, so join the club... */
__extern int prctl(int, ...);
#endif /* _SYS_PRCTL_H */
|