mirror of
https://github.com/holub/mame
synced 2025-07-02 16:49:22 +03:00
Fix for systems where getc() is a #define rather than a function [ElBarto]
This commit is contained in:
parent
df793794cf
commit
c27b8e0784
@ -45,7 +45,10 @@
|
||||
#include "corefile.h"
|
||||
#include "hash.h"
|
||||
|
||||
|
||||
// some systems use macros for getc/putc rather than functions
|
||||
#ifdef getc
|
||||
#undef getc
|
||||
#endif
|
||||
|
||||
//**************************************************************************
|
||||
// TYPE DEFINITIONS
|
||||
|
Loading…
Reference in New Issue
Block a user