summaryrefslogtreecommitdiff
path: root/vms
diff options
context:
space:
mode:
authorJohn E. Malmberg <wb8tyw@qsl.net>2007-07-24 02:56:39 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2007-07-24 13:05:54 +0000
commit5c4d031a9f33835f94f9c1d101c900979c2aca6e (patch)
treecb564cf7a49256953373b13c69f66cda85de0608 /vms
parentc5b8327978ae146c737356545c4212795dcdd744 (diff)
downloadperl-5c4d031a9f33835f94f9c1d101c900979c2aca6e.tar.gz
[patch@31649] vms.c realpath prototype mismatch
From: "John E. Malmberg" <wb8tyw@qsl.net> Message-ID: <46A5F707.1080502@qsl.net> p4raw-id: //depot/perl@31650
Diffstat (limited to 'vms')
-rw-r--r--vms/vms.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/vms/vms.c b/vms/vms.c
index 43a9708a0a..27214f7ad6 100644
--- a/vms/vms.c
+++ b/vms/vms.c
@@ -12160,7 +12160,8 @@ Perl_vms_start_glob
#ifdef HAS_SYMLINK
static char *
-mp_do_vms_realpath(pTHX_ const char *filespec, char * rslt_spec, const int *utf8_fl);
+mp_do_vms_realpath(pTHX_ const char *filespec, char * rslt_spec,
+ const int *utf8_fl);
void
vms_realpath_fromperl(pTHX_ CV *cv)
@@ -12273,7 +12274,8 @@ char *realpath(const char *file_name, char * resolved_name, ...);
* on OpenVMS.
*/
static char *
-mp_do_vms_realpath(pTHX_ const char *filespec, char *outbuf, int *utf8_fl)
+mp_do_vms_realpath(pTHX_ const char *filespec, char *outbuf,
+ const int *utf8_fl)
{
return realpath(filespec, outbuf);
}