mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 12:14:42 +00:00
0004ea613a
apparently some other archs have sys/io.h and should not break just because they don't have the x86 port io functions. provide a blank bits/io.h everywhere for now.
18 lines
219 B
C
18 lines
219 B
C
#ifndef _SYS_IO_H
|
|
#define _SYS_IO_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <features.h>
|
|
|
|
#include <bits/io.h>
|
|
|
|
int iopl(int);
|
|
int ioperm(unsigned long, unsigned long, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|