diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 16:03:03 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-11-22 16:03:03 +0000 |
commit | dd625418be793812f132dbb9e08a4b00fbea9868 (patch) | |
tree | 08abaf6dcca5d1720692732ce1156ef343fa97a4 /gas/emul.h | |
parent | 369864a44db723c61b3bc457e869abfe73ec7664 (diff) | |
download | gdb-dd625418be793812f132dbb9e08a4b00fbea9868.zip gdb-dd625418be793812f132dbb9e08a4b00fbea9868.tar.gz gdb-dd625418be793812f132dbb9e08a4b00fbea9868.tar.bz2 |
* ehopt.c: Convert to ISO-C.
* emul.h: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* flonum-copy.c: Likewise.
* flonum-mult.c: Likewise.
* flonum.h: Likewise.
* frags.c: Likewise.
* frags.h: Likewise.
Diffstat (limited to 'gas/emul.h')
-rw-r--r-- | gas/emul.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -23,10 +23,10 @@ struct emulation { - void (* match) PARAMS ((const char *)); + void (* match) (const char *); const char * name; - void (* init) PARAMS ((void)); - const char *(* bfd_name) PARAMS ((void)); + void (* init) (void); + const char *(* bfd_name) (void); unsigned local_labels_fb : 1; unsigned local_labels_dollar : 1; unsigned leading_underscore : 2; @@ -38,7 +38,7 @@ struct emulation COMMON struct emulation * this_emulation; -extern const char * default_emul_bfd_name PARAMS ((void)); -extern void common_emul_init PARAMS ((void)); +extern const char * default_emul_bfd_name (void); +extern void common_emul_init (void); #endif |