diff options
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/ioperm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/ioperm.c b/libc/sysdeps/linux/common/ioperm.c index 64fc6470f..bca2fff0f 100644 --- a/libc/sysdeps/linux/common/ioperm.c +++ b/libc/sysdeps/linux/common/ioperm.c @@ -13,8 +13,10 @@ /* psm: can't #include <sys/io.h>, some archs miss it */ extern int ioperm(unsigned long __from, unsigned long __num, int __turn_on) __THROW; +/* Not needed internally; libc_hidden_proto(ioperm) - +*/ _syscall3(int, ioperm, unsigned long, from, unsigned long, num, int, turn_on) +/*libc_hidden_def(ioperm)*/ #endif |