提交 0004ea61 编写于 作者: R Rich Felker

fix breakage from introducing bits header for sys/io.h

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.
上级 61aa6324
int iopl(int);
int ioperm(unsigned long, unsigned long, int);
static __inline void outb(unsigned char __val, unsigned short __port)
{
__asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port));
......
int iopl(int);
int ioperm(unsigned long, unsigned long, int);
static __inline void outb(unsigned char __val, unsigned short __port)
{
__asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port));
......
......@@ -8,6 +8,9 @@ extern "C" {
#include <bits/io.h>
int iopl(int);
int ioperm(unsigned long, unsigned long, int);
#ifdef __cplusplus
}
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册