1 #ifdef GO32 2 #include <inlines/pc.h> 3 #define outb(x,y) outportb(x,y) 4 #define inb(x) inportb(x) 5 #define ioperm(x,y,z) 0 6 #endif /* GO32 */ 7 8 #ifndef GO32 9 #ifdef GLIBC 10 #include <sys/io.h> 11 #else 12 #include <asm/io.h> 13 #endif /* GLIBC */ 14 #endif /* !GO32 */ 15 #include <unistd.h> 16 17 int checkplug (void); 18 int COMBASE; |