summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>1998-02-24 11:02:43 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-02-25 14:58:00 +0000
commitdfe9444ca7881e716e9e8feaf20b55da491363ca (patch)
tree858ae366f65093b5a6cbd3e4e257b587547759ab /pp_sys.c
parenteefabb09a1a549c1747d7c554d375ecb16cafff1 (diff)
downloadperl-dfe9444ca7881e716e9e8feaf20b55da491363ca.tar.gz
Re: ANNOUNCE: perl5.004_60 Configure patch is available
p4raw-id: //depot/perl@575
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_sys.c b/pp_sys.c
index ec49864120..f90299289a 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -2915,9 +2915,9 @@ PP(pp_telldir)
{
djSP; dTARGET;
#if defined(HAS_TELLDIR) || defined(telldir)
-#if !defined(telldir) && !defined(HAS_TELLDIR_PROTOTYPE) && !defined(DONT_DECLARE_STD)
+# ifdef NEED_TELLDIR_PROTO /* XXX does _anyone_ need this? --AD 2/20/1998 */
long telldir _((DIR *));
-#endif
+# endif
GV *gv = (GV*)POPs;
register IO *io = GvIOn(gv);