12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef _SYS_PERM_H
- #define _SYS_PERM_H 1
- #include <features.h>
- __BEGIN_DECLS
- extern int ioperm (unsigned long int __from, unsigned long int __num,
- int __turn_on) __THROW;
- libc_hidden_proto(ioperm)
- extern int iopl (int __level) __THROW;
- __END_DECLS
- #endif
|