summaryrefslogtreecommitdiff
path: root/arch/i386/bits
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-11-18 19:58:15 -0500
committerRich Felker <dalias@aerifal.cx>2012-11-18 19:58:15 -0500
commit0004ea613ac310daaee30c167112d796db33fa70 (patch)
tree675ab38b730d016465ece9c704af061277790b78 /arch/i386/bits
parent61aa6324af982b635f8c392640a4e8e450c4c6b4 (diff)
downloadmusl-0004ea613ac310daaee30c167112d796db33fa70.tar.gz
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.
Diffstat (limited to 'arch/i386/bits')
-rw-r--r--arch/i386/bits/io.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/i386/bits/io.h b/arch/i386/bits/io.h
index d26ea57b..dd5bddc9 100644
--- a/arch/i386/bits/io.h
+++ b/arch/i386/bits/io.h
@@ -1,6 +1,3 @@
-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));