source: vendor/perl/5.8.8/mint/stdio.h

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 408 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.