8 lines
270 B
C
8 lines
270 B
C
// Stub for DJGPP <pc.h> — Linux proxy build
|
|
#ifndef PC_H_STUB
|
|
#define PC_H_STUB
|
|
|
|
static inline void outportb(unsigned short port, unsigned char val) { (void)port; (void)val; }
|
|
static inline unsigned char inportb(unsigned short port) { (void)port; return 0; }
|
|
|
|
#endif
|