* vms-tir.c: Add missing prototypes.
authorAndreas Jaeger <aj@suse.de>
Sat, 1 Sep 2001 10:29:27 +0000 (10:29 +0000)
committerAndreas Jaeger <aj@suse.de>
Sat, 1 Sep 2001 10:29:27 +0000 (10:29 +0000)
* vms-hdr.c: Likewise.
* vms-gsd.c: Likewise.
* vms-misc.c: Likewise.

bfd/ChangeLog
bfd/vms-gsd.c
bfd/vms-hdr.c
bfd/vms-misc.c
bfd/vms-tir.c

index 25083b1a7fe8d74aa5619257536c17881f6834a3..b5675768bdc472a60458756e9e9bda121bfb64fc 100644 (file)
@@ -1,3 +1,10 @@
+2001-09-01  Andreas Jaeger  <aj@suse.de>
+
+       * vms-tir.c: Add missing prototypes.
+       * vms-hdr.c: Likewise.
+       * vms-gsd.c: Likewise.
+       * vms-misc.c: Likewise.
+
 2001-08-31  H.J. Lu  <hjl@gnu.org>
 
        * elf32-mips.c (_bfd_mips_elf_check_relocs): Report filename
@@ -77,8 +84,8 @@
 
 2001-08-29  Tom Rix <trix@redhat.com>
 
-       * xcofflink.c (xcoff_link_add_symbols):  Fix XTY_LD symbol that
-       does not follow a XTY_SD.
+       * xcofflink.c (xcoff_link_add_symbols):  Fix XTY_LD symbol that
+       does not follow a XTY_SD.
 
 2001-08-29  Alan Modra  <amodra@bigpond.net.au>
 
index 773823c0baad7a84a0bd184be4c0d9f88453c30c..5365853ef07d77a12930fea98f4bc318c43183e9 100644 (file)
@@ -1,6 +1,6 @@
 /* vms-gsd.c -- BFD back-end for VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
 
    go and read the openVMS linker manual (esp. appendix B)
    if you don't know what's going on here :-)
@@ -139,6 +139,9 @@ static struct sec_flags_struct evax_section_flags[] = {
        (SEC_IN_MEMORY|SEC_DATA|SEC_HAS_CONTENTS|SEC_ALLOC|SEC_LOAD) }
 };
 
+static flagword vms_secflag_by_name PARAMS ((bfd *, struct sec_flags_struct *, char *, int));
+static flagword vms_esecflag_by_name PARAMS ((struct sec_flags_struct *, char *, int));
+
 /* Retrieve bfd section flags by name and size  */
 
 static flagword
index 228066f2e73783325da8adec54bd2d14c3280b59..f98577d66b20b0d171d4fb5bc8cbaad4fe5f354e 100644 (file)
@@ -1,6 +1,6 @@
 /* vms-hdr.c -- BFD back-end for VMS/VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
 
    HDR record handling functions
    EMH record handling functions
@@ -36,6 +36,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_ALLOCA_H
 #include <alloca.h>
 #endif
+
+static unsigned char *get_vms_time_string PARAMS ((void));
+
+
 /*---------------------------------------------------------------------------*/
 
 /* Read & process emh record
index ce66a27678f05cabdbf71d87d9d889eaee42f4ec..f0ba28599991bdeb964ee751178410a2310a6b5c 100644 (file)
@@ -30,6 +30,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "vms.h"
 
+static vms_section *add_new_contents PARAMS ((bfd *, sec_ptr));
+static int hash_string PARAMS ((const char *));
+static asymbol *new_symbol PARAMS ((bfd *, char *));
+  
 /*-----------------------------------------------------------------------------*/
 #if VMS_DEBUG
 /* debug functions */
index 1f3446c734649668ae14d4d70643968e2c452a3b..7ffe605fcd1a4c668052223556ed6bc36f824bd0 100644 (file)
@@ -1,6 +1,6 @@
 /* vms-tir.c -- BFD back-end for VAX (openVMS/VAX) and
    EVAX (openVMS/Alpha) files.
-   Copyright 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
 
    TIR record handling functions
    ETIR record handling functions
@@ -49,6 +49,17 @@ static void image_write_b PARAMS ((bfd *abfd, unsigned int value));
 static void image_write_w PARAMS ((bfd *abfd, unsigned int value));
 static void image_write_l PARAMS ((bfd *abfd, unsigned long value));
 static void image_write_q PARAMS ((bfd *abfd, uquad value));
+static int check_section PARAMS ((bfd *, int));
+static boolean etir_sta PARAMS ((bfd *, int, unsigned char *));
+static boolean etir_sto PARAMS ((bfd *, int, unsigned char *));
+static boolean etir_opr PARAMS ((bfd *, int, unsigned char *));
+static boolean etir_ctl PARAMS ((bfd *, int, unsigned char *));
+static boolean etir_stc PARAMS ((bfd *, int, unsigned char *));
+static asection *new_section PARAMS ((bfd *, int));
+static int alloc_section PARAMS ((bfd *, unsigned int));
+static int etir_cmd PARAMS ((bfd *, int, unsigned char *));
+static int analyze_tir PARAMS ((bfd *, unsigned char *, unsigned int));
+static int analyze_etir PARAMS ((bfd *, unsigned char *, unsigned int));
 
 /*-----------------------------------------------------------------------------*/
 
This page took 0.030197 seconds and 4 git commands to generate.