diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-08-14 22:00:21 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-08-14 22:00:21 +0000 |
commit | e15126c456ccbdbc0c2932fc45a7dc7956aa8f7e (patch) | |
tree | 1a18cc872bed8fe7876141bf974e5b25312acc82 | |
parent | 56c423fec54c1cbc282d958155cd667ac6cc2ba9 (diff) | |
download | gdb-e15126c456ccbdbc0c2932fc45a7dc7956aa8f7e.zip gdb-e15126c456ccbdbc0c2932fc45a7dc7956aa8f7e.tar.gz gdb-e15126c456ccbdbc0c2932fc45a7dc7956aa8f7e.tar.bz2 |
* gasp.c (do_align, get_any_string): Mark as static.
(do_assigna, do_assignc, new_file): Likewise.
-rw-r--r-- | gas/ChangeLog | 3 | ||||
-rw-r--r-- | gas/gasp.c | 10 |
2 files changed, 8 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 386185e..565d7cc 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -5,6 +5,9 @@ Mon Aug 14 14:08:07 1995 Jeff Law (law@snake.cs.utah.edu) Mon Aug 14 15:45:07 1995 Ian Lance Taylor <ian@cygnus.com> + * gasp.c (do_align, get_any_string): Mark as static. + (do_assigna, do_assignc, new_file): Likewise. + * config/tc-m68k.c (s_reg): Rename local op to rop to avoid confusion with macro op. @@ -1706,7 +1706,7 @@ do_datab (idx, in) /* .align <size> */ -void +static void do_align (idx, in) int idx; sb *in; @@ -1842,7 +1842,7 @@ do_form (idx, in) "<string>" -> return string xyx<whitespace> -> return xyz */ -int +static int get_any_string (idx, in, out, expand, pretend_quoted) int idx; sb *in; @@ -2263,7 +2263,7 @@ free_old_entry (ptr) /* name: .ASSIGNA <value> */ -void +static void do_assigna (idx, in) int idx; sb *in; @@ -2291,7 +2291,7 @@ do_assigna (idx, in) /* name: .ASSIGNC <string> */ -void +static void do_assignc (idx, in) int idx; sb *in; @@ -3804,7 +3804,7 @@ do_sdatab (idx, in) } -int +static int new_file (name) const char *name; { |