1570af302Sopenharmony_ci#include "syscall.h" 2570af302Sopenharmony_ci 3570af302Sopenharmony_ci#ifdef SYS_ioperm 4570af302Sopenharmony_ci#include <sys/io.h> 5570af302Sopenharmony_ci 6570af302Sopenharmony_ciint ioperm(unsigned long from, unsigned long num, int turn_on) 7570af302Sopenharmony_ci{ 8570af302Sopenharmony_ci return syscall(SYS_ioperm, from, num, turn_on); 9570af302Sopenharmony_ci} 10570af302Sopenharmony_ci#endif 11