summaryrefslogtreecommitdiff
path: root/ext/POSIX
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-12-28 02:47:04 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-12-28 02:47:04 +0000
commitd702ae4256b191c7ab78dd4e746c2175206f38ce (patch)
tree50251cab91f62dc8040abf2e3c987f91e863023c /ext/POSIX
parentcf21f3c64baee1fc09bbeb991ec292f2b276bce6 (diff)
downloadperl-d702ae4256b191c7ab78dd4e746c2175206f38ce.tar.gz
cygwin update from Eric Fifer <EFifer@sanwaint.com>
p4raw-id: //depot/perl@4717
Diffstat (limited to 'ext/POSIX')
-rw-r--r--ext/POSIX/POSIX.xs3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs
index 6fc32b1bd5..4c96f12e4f 100644
--- a/ext/POSIX/POSIX.xs
+++ b/ext/POSIX/POSIX.xs
@@ -108,7 +108,6 @@
#else
#if defined (CYGWIN)
# define tzname _tzname
-# undef MB_CUR_MAX /* XXX: bug in b20.1 */
#endif
#if defined (WIN32)
# undef mkfifo
@@ -290,7 +289,7 @@ unsigned long strtoul (const char *, char **, int);
#endif
#ifdef HAS_TZNAME
-# ifndef WIN32
+# if !defined(WIN32) && !defined(CYGWIN)
extern char *tzname[];
# endif
#else