* symfile.c (list_overlays_command, map_overlay_command)
authorTom Tromey <tromey@redhat.com>
Tue, 18 Dec 2012 19:25:24 +0000 (19:25 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 18 Dec 2012 19:25:24 +0000 (19:25 +0000)
(unmap_overlay_command): Now static.

gdb/ChangeLog
gdb/symfile.c

index cb57beca7bf99ad94209372029b907c01cef4353..ef1dcabfccd33b502388ac7963703ceb7af3cd8d 100644 (file)
@@ -1,3 +1,8 @@
+2012-12-12  Tom Tromey  <tromey@redhat.com>
+
+       * symfile.c (list_overlays_command, map_overlay_command)
+       (unmap_overlay_command): Now static.
+
 2012-12-12  Tom Tromey  <tromey@redhat.com>
 
        * cli/cli-cmds.c (_initialize_cli_cmds): Remove "document",
index fc908b3caab87c89a21118d81ec87617d6d06238..33113c30c4ffdb1fdb69d9436fe2f4a125b96b9d 100644 (file)
@@ -100,12 +100,6 @@ static void decrement_reading_symtab (void *);
 
 static void overlay_invalidate_all (void);
 
-void list_overlays_command (char *, int);
-
-void map_overlay_command (char *, int);
-
-void unmap_overlay_command (char *, int);
-
 static void overlay_auto_command (char *, int);
 
 static void overlay_manual_command (char *, int);
@@ -3296,7 +3290,7 @@ find_pc_mapped_section (CORE_ADDR pc)
 /* Function: list_overlays_command
    Print a list of mapped sections and their PC ranges.  */
 
-void
+static void
 list_overlays_command (char *args, int from_tty)
 {
   int nmapped = 0;
@@ -3336,7 +3330,7 @@ list_overlays_command (char *args, int from_tty)
 /* Function: map_overlay_command
    Mark the named section as mapped (ie. residing at its VMA address).  */
 
-void
+static void
 map_overlay_command (char *args, int from_tty)
 {
   struct objfile *objfile, *objfile2;
@@ -3381,7 +3375,7 @@ map_overlay_command (char *args, int from_tty)
    Mark the overlay section as unmapped
    (ie. resident in its LMA address range, rather than the VMA range).  */
 
-void
+static void
 unmap_overlay_command (char *args, int from_tty)
 {
   struct objfile *objfile;
This page took 0.033018 seconds and 4 git commands to generate.