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 /gas/gasp.c | |
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.
Diffstat (limited to 'gas/gasp.c')
-rw-r--r-- | gas/gasp.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; { |