diff options
author | Thiemo Seufer <ths@networkno.de> | 2002-09-17 07:38:14 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2002-09-17 07:38:14 +0000 |
commit | e8cf2216ef08ec8495c056a7f4fb3483634d8868 (patch) | |
tree | 8ee5889eba59ab3812ab1852fd056acb1bd93e29 /gas/config | |
parent | bb279dc026b594e88ac81c8f185465fdbe9351da (diff) | |
download | binutils-gdb-e8cf2216ef08ec8495c056a7f4fb3483634d8868.tar.gz |
* config/obj-elf.c (obj_elf_change_section): Move prototype to
obj-elf.h
* config/obj-elf.h (obj_elf_change_section): Likewise.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-elf.c | 2 | ||||
-rw-r--r-- | gas/config/obj-elf.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index 736a5d48488..799e44fdc30 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -77,8 +77,6 @@ static void obj_elf_ident PARAMS ((int)); static void obj_elf_weak PARAMS ((int)); static void obj_elf_local PARAMS ((int)); static void obj_elf_visibility PARAMS ((int)); -void obj_elf_change_section - PARAMS ((const char *, int, int, int, const char *, int, int)); static int obj_elf_parse_section_letters PARAMS ((char *, size_t)); static int obj_elf_section_word PARAMS ((char *, size_t)); static char *obj_elf_section_name PARAMS ((void)); diff --git a/gas/config/obj-elf.h b/gas/config/obj-elf.h index d59bbfe86b9..0fa2ba60932 100644 --- a/gas/config/obj-elf.h +++ b/gas/config/obj-elf.h @@ -162,6 +162,8 @@ extern void obj_elf_version PARAMS ((int)); extern void obj_elf_common PARAMS ((int)); extern void obj_elf_data PARAMS ((int)); extern void obj_elf_text PARAMS ((int)); +extern void obj_elf_change_section + PARAMS ((const char *, int, int, int, const char *, int, int)); extern struct fix *obj_elf_vtable_inherit PARAMS ((int)); extern struct fix *obj_elf_vtable_entry PARAMS ((int)); |