summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/mint/stdio.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2010-09-24 14:59:12 +0000
committermillert <millert@openbsd.org>2010-09-24 14:59:12 +0000
commit41d3e4696cd3daae0ce9e1dce10beb6336934dd1 (patch)
treedbc77d51b3c598c8bf289a326809b6fbddd7c78a /gnu/usr.bin/perl/mint/stdio.h
parentAdd support pipex for L2TP call and L2TP on IPv6. (diff)
downloadwireguard-openbsd-41d3e4696cd3daae0ce9e1dce10beb6336934dd1.tar.xz
wireguard-openbsd-41d3e4696cd3daae0ce9e1dce10beb6336934dd1.zip
remove files no longer in perl 5.12.2 (or that have moved)
Diffstat (limited to 'gnu/usr.bin/perl/mint/stdio.h')
-rw-r--r--gnu/usr.bin/perl/mint/stdio.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/gnu/usr.bin/perl/mint/stdio.h b/gnu/usr.bin/perl/mint/stdio.h
deleted file mode 100644
index 7b2d65d8a8e..00000000000
--- a/gnu/usr.bin/perl/mint/stdio.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Wrapper around broken system stdio.h. */
-
-#ifndef _PERL_WRAPPER_AROUND_STDIO_H
-# define _PERL_WRAPPER_AROUND_STDIO_H 1
-
-/* The MiNTLib has a macro called EOS in stdio.h. This conflicts
- with regnode.h. Who had this glorious idea. */
-#ifdef EOS
-# define PERL_EOS EOS
-#endif
-
-/* First include the system file. */
-#include_next <stdio.h>
-
-#ifdef EOS
-# undef EOS
-# define EOS PERL_EOS
-#endif
-
-#endif
-