2010-08-03 Tristan Gingold <gingold@adacore.com>
authorTristan Gingold <gingold@adacore.com>
Tue, 3 Aug 2010 15:18:51 +0000 (15:18 +0000)
committerTristan Gingold <gingold@adacore.com>
Tue, 3 Aug 2010 15:18:51 +0000 (15:18 +0000)
* vms-misc.c (vms_convert_to_var): Make it static.
(_bfd_vms_convert_to_var_unix_filename): Make it public.

bfd/ChangeLog
bfd/vms-misc.c

index 41b25977a5c1efa2e5f81f79b281e64cf86ff723..70c4570ab3f7743667db5f244577b867c8b0f15d 100644 (file)
@@ -1,3 +1,8 @@
+2010-08-03  Tristan Gingold  <gingold@adacore.com>
+
+       * 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  <gingold@adacore.com>
 
        * makefile.vms (OBJS): Update list.
index 984004337d13e0338882fcec836f35110a98c954..a2665b7e4f938986a45aeb3e5394278ff8b5d23a 100644 (file)
@@ -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;
This page took 0.026834 seconds and 4 git commands to generate.