diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-11-17 15:09:45 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-11-19 13:55:19 +0100 |
commit | 739a0b843246478d33d6b9205abb19e5492a5807 (patch) | |
tree | 35e51e021d300da32b7eb4b872439fa3b107bcc6 /util.h | |
parent | a2b3762a2993f9d1f92ffee8ac3a80b128381168 (diff) | |
download | perl-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |