summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-11-17 15:09:45 +0100
committerNicholas Clark <nick@ccl4.org>2012-11-19 13:55:19 +0100
commit739a0b843246478d33d6b9205abb19e5492a5807 (patch)
tree35e51e021d300da32b7eb4b872439fa3b107bcc6 /util.h
parenta2b3762a2993f9d1f92ffee8ac3a80b128381168 (diff)
downloadperl-739a0b843246478d33d6b9205abb19e5492a5807.tar.gz
Remove the EPOC port.
EPOC was a family of operating systems developed by Psion for mobile devices. It was the predecessor of Symbian. The port was last updated in April 2002.
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.h b/util.h
index ebc2bad9ac..5f11289303 100644
--- a/util.h
+++ b/util.h
@@ -27,11 +27,11 @@
|| ((f)[0] == '\\' && (f)[1] == '\\') /* UNC path */ \
|| ((f)[3] == ':')) /* volume name, currently only sys */
# else /* !NETWARE */
-# if defined(DOSISH) || defined(EPOC) || defined(__SYMBIAN32__)
+# if defined(DOSISH) || defined(__SYMBIAN32__)
# define PERL_FILE_IS_ABSOLUTE(f) \
(*(f) == '/' \
|| ((f)[0] && (f)[1] == ':')) /* drive name */
-# else /* NEITHER DOSISH NOR EPOCISH NOR SYMBIANISH */
+# else /* NEITHER DOSISH NOR SYMBIANISH */
# define PERL_FILE_IS_ABSOLUTE(f) (*(f) == '/')
# endif /* DOSISH */
# endif /* NETWARE */