diff options
Diffstat (limited to 'contrib/binutils/gas/emul.h')
-rw-r--r-- | contrib/binutils/gas/emul.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/binutils/gas/emul.h b/contrib/binutils/gas/emul.h index b665260..e4afa68 100644 --- a/contrib/binutils/gas/emul.h +++ b/contrib/binutils/gas/emul.h @@ -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 |