projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
37a3cbe
)
Someone (*cough* *cough*) stole VMS' getpwent prototype.
Jarkko Hietaniemi [Mon, 18 Mar 2002 19:08:32 +0000 (19:08 +0000)]
(Fix from Craig Berry)
p4raw-id: //depot/perl@15304
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
4760210
..
941760b
100644
(file)
--- 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