diff options
author | John E. Malmberg <wb8tyw@qsl.net> | 2005-10-17 13:08:19 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-10-18 08:01:12 +0000 |
commit | 10d1eec1489bc184479ae5218e25916b1e36de30 (patch) | |
tree | 5a4520f0b86a57177bc1ff169fd6b874c8f00dfa /vms | |
parent | 68a72f3df7578a1622fef91a71fc6379b7dabb97 (diff) | |
download | perl-10d1eec1489bc184479ae5218e25916b1e36de30.tar.gz |
[patch@25783] vmsish.h fix for lstat() definition
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-ID: <435412C3.3080504@qsl.net>
p4raw-id: //depot/perl@25786
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vmsish.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index db0ff933a7..fbec33a477 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -592,6 +592,9 @@ struct utimbuf { /* Use our own stat() clones, which handle Unix-style directory names */ #define Stat(name,bufptr) flex_stat(name,bufptr) #define Fstat(fd,bufptr) Perl_flex_fstat(aTHX_ fd,bufptr) +#ifndef DONT_MASK_RTL_CALLS +#define lstat(name, bufptr) Perl_flex_lstat(name, bufptr) +#endif /* Setup for the dirent routines: * opendir(), closedir(), readdir(), seekdir(), telldir(), and |