summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-03-04 00:28:00 +0000
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-07-20 23:28:12 +0100
commit822c8b4dc3fe62cd97d78e693e5871fcc65782fd (patch)
tree58172809ebe7ee4365ca85886b38fbcf6862b86e /util.h
parent6e764e36cf6a7c109e74ca4ccafbba27a0b422cd (diff)
downloadperl-822c8b4dc3fe62cd97d78e693e5871fcc65782fd.tar.gz
Remove Symbian port
Also eliminate USE_HEAP_INSTEAD_OF_STACK and SETSOCKOPT_OPTION_VALUE_T, since Symbian was the only user of those.
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 6294e590b8..6bf7d9ecde 100644
--- a/util.h
+++ b/util.h
@@ -28,11 +28,11 @@
(((f)[0] && (f)[1] == ':') /* drive name */ \
|| ((f)[0] == '\\' && (f)[1] == '\\') /* UNC path */ \
|| ((f)[3] == ':')) /* volume name, currently only sys */
-#elif defined(DOSISH) || defined(__SYMBIAN32__)
+#elif defined(DOSISH)
# define PERL_FILE_IS_ABSOLUTE(f) \
(*(f) == '/' \
|| ((f)[0] && (f)[1] == ':')) /* drive name */
-#else /* NEITHER DOSISH NOR SYMBIANISH */
+#else /* NOT DOSISH */
# define PERL_FILE_IS_ABSOLUTE(f) (*(f) == '/')
#endif