1234567891011121314151617181920212223242526272829303132333435 |
- #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;
- extern int iopl (int __level) __THROW;
- __END_DECLS
- #endif
|