From: Tristan Gingold Date: Tue, 3 Aug 2010 15:18:51 +0000 (+0000) Subject: 2010-08-03 Tristan Gingold X-Git-Tag: sid-snapshot-20100901~285 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfea910e97b4375e2027c52936c79cde94221796;p=platform%2Fupstream%2Fbinutils.git 2010-08-03 Tristan Gingold * vms-misc.c (vms_convert_to_var): Make it static. (_bfd_vms_convert_to_var_unix_filename): Make it public. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 41b2597..70c4570a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,10 @@ 2010-08-03 Tristan Gingold + * vms-misc.c (vms_convert_to_var): Make it static. + (_bfd_vms_convert_to_var_unix_filename): Make it public. + +2010-08-03 Tristan Gingold + * makefile.vms (OBJS): Update list. 2010-08-03 Tristan Gingold diff --git a/bfd/vms-misc.c b/bfd/vms-misc.c index 9840043..a2665b7 100644 --- a/bfd/vms-misc.c +++ b/bfd/vms-misc.c @@ -401,8 +401,8 @@ _bfd_vms_output_fill (struct vms_rec_wr *recwr, int value, int count) using undocumented system call sys$modify(). Pure VMS version. */ -void -_bfd_vms_convert_to_var (char * vms_filename) +static void +vms_convert_to_var (char * vms_filename) { struct FAB fab = cc$rms_fab; @@ -433,8 +433,8 @@ vms_convert_to_var_1 (char *filename, int type) using undocumented system call sys$modify(). Unix filename version. */ -static int -vms_convert_to_var_unix_filename (const char *unix_filename) +int +_bfd_vms_convert_to_var_unix_filename (const char *unix_filename) { if (decc$to_vms (unix_filename, &vms_convert_to_var_1, 0, 1) != 1) return FALSE;