author | Rich Felker <dalias@aerifal.cx> | 2012年07月23日 16:54:53 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012年07月23日 16:54:53 -0400 |
commit | d426b045332718ae6d42237303d657fd97c51455 (patch) | |
tree | 5399f0e33644483d99ca9376c2abbc8929c219ec /include/sys/io.h | |
parent | 53147f902b7f84d8108bd9738641a53722a4a205 (diff) | |
download | musl-d426b045332718ae6d42237303d657fd97c51455.tar.gz |
-rw-r--r-- | include/sys/io.h | 13 |
diff --git a/include/sys/io.h b/include/sys/io.h new file mode 100644 index 00000000..a6ba4674 --- /dev/null +++ b/include/sys/io.h @@ -0,0 +1,13 @@ +#ifndef _SYS_IO_H +#define _SYS_IO_H +#ifdef __cplusplus +extern "C" { +#endif + +int ioperm(unsigned long, unsigned long, int); +int iopl(int); + +#ifdef __cplusplus +} +#endif +#endif |