summaryrefslogtreecommitdiff
path: root/bfd/vms-misc.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2010-08-03 15:18:51 +0000
committerTristan Gingold <gingold@adacore.com>2010-08-03 15:18:51 +0000
commite0fdf2aa981c77e5b65882e8a6da49bde0b046c3 (patch)
tree120c6066c504ea46f58373b058b089d8698a26a9 /bfd/vms-misc.c
parentb5c96194e278177bd2a70a9edf624c6366e39d74 (diff)
downloadbinutils-redhat-e0fdf2aa981c77e5b65882e8a6da49bde0b046c3.tar.gz
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.
Diffstat (limited to 'bfd/vms-misc.c')
-rw-r--r--bfd/vms-misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/vms-misc.c b/bfd/vms-misc.c
index 984004337d..a2665b7e4f 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;