diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-18 19:58:15 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-18 19:58:15 -0500 |
commit | 0004ea613ac310daaee30c167112d796db33fa70 (patch) | |
tree | 675ab38b730d016465ece9c704af061277790b78 /include/sys | |
parent | 61aa6324af982b635f8c392640a4e8e450c4c6b4 (diff) | |
download | musl-0004ea613ac310daaee30c167112d796db33fa70.tar.gz musl-0004ea613ac310daaee30c167112d796db33fa70.tar.xz musl-0004ea613ac310daaee30c167112d796db33fa70.zip |
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 'include/sys')
-rw-r--r-- | include/sys/io.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/io.h b/include/sys/io.h index ce5423e5..16658cec 100644 --- a/include/sys/io.h +++ b/include/sys/io.h @@ -8,6 +8,9 @@ extern "C" { #include <bits/io.h> +int iopl(int); +int ioperm(unsigned long, unsigned long, int); + #ifdef __cplusplus } #endif |