Commit | Line | Data |
---|---|---|
61ae2fbf | 1 | /* Wrapper around broken system stdio.h. */ |
2 | ||
3 | #ifndef _PERL_WRAPPER_AROUND_STDIO_H | |
4 | # define _PERL_WRAPPER_AROUND_STDIO_H 1 | |
5 | ||
6 | /* The MiNTLib has a macro called EOS in stdio.h. This conflicts | |
7 | with regnode.h. Who had this glorious idea. */ | |
8 | #ifdef EOS | |
9 | # define PERL_EOS EOS | |
10 | #endif | |
11 | ||
12 | /* First include the system file. */ | |
13 | #include_next <stdio.h> | |
14 | ||
15 | #ifdef EOS | |
16 | # undef EOS | |
17 | # define EOS PERL_EOS | |
18 | #endif | |
19 | ||
20 | #endif | |
21 |