summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-03-18 19:08:32 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-18 19:08:32 +0000
commitc2a8f79047c4fc9379fd24944efc55cf5e791067 (patch)
tree715f02ae4f5a40f3b08cfa6ac67fd2575c055aa8 /pp_sys.c
parent37a3cbe46a1ddcdc9fe4dd3fa744fba525eafcf7 (diff)
downloadperl-c2a8f79047c4fc9379fd24944efc55cf5e791067.tar.gz
Someone (*cough* *cough*) stole VMS' getpwent prototype.
(Fix from Craig Berry) p4raw-id: //depot/perl@15304
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 47602103cd..941760bd73 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -82,6 +82,8 @@ extern int h_errno;
# ifdef HAS_GETPWENT
#ifndef getpwent
struct passwd *getpwent (void);
+#elif defined (VMS) && defined (my_getpwent)
+ struct passwd *Perl_my_getpwent (void);
#endif
# endif
#endif