From c2a8f79047c4fc9379fd24944efc55cf5e791067 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Mon, 18 Mar 2002 19:08:32 +0000 Subject: [PATCH] Someone (*cough* *cough*) stole VMS' getpwent prototype. (Fix from Craig Berry) p4raw-id: //depot/perl@15304 --- pp_sys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pp_sys.c b/pp_sys.c index 4760210..941760b 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 -- 2.7.4