// Stub for DJGPP — 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