summaryrefslogtreecommitdiff
path: root/gas/write.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-12-06 16:16:51 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-12-06 16:16:51 +0000
commit09ce2ed6fe9adedc16871cd5ff55851529e32d36 (patch)
treec58283f544b4c367177eeb016811614f84a4fab5 /gas/write.h
parent4e84bb7ce1cdfd7c3cc25028d158fceb45e4b7a1 (diff)
downloadbinutils-redhat-09ce2ed6fe9adedc16871cd5ff55851529e32d36.tar.gz
* dwarf2dbg.c: Convert to ISO-C.
* write.c: Likewise. * write.h: Likewise.
Diffstat (limited to 'gas/write.h')
-rw-r--r--gas/write.h43
1 files changed, 21 insertions, 22 deletions
diff --git a/gas/write.h b/gas/write.h
index 8a1c860444..0e0f59f8f7 100644
--- a/gas/write.h
+++ b/gas/write.h
@@ -183,36 +183,35 @@ extern long string_byte_count;
extern int section_alignment[];
extern bit_fixS *bit_fix_new
- PARAMS ((int size, int offset, long base_type, long base_adj, long min,
- long max, long add));
-extern void append PARAMS ((char **charPP, char *fromP, unsigned long length));
-extern void record_alignment PARAMS ((segT seg, int align));
-extern int get_recorded_alignment PARAMS ((segT seg));
-extern void subsegs_finish PARAMS ((void));
-extern void write_object_file PARAMS ((void));
-extern long relax_frag PARAMS ((segT, fragS *, long));
-extern int relax_segment
- PARAMS ((struct frag * seg_frag_root, segT seg_type));
-
-extern void number_to_chars_littleendian PARAMS ((char *, valueT, int));
-extern void number_to_chars_bigendian PARAMS ((char *, valueT, int));
+ (int size, int offset, long base_type, long base_adj, long min,
+ long max, long add);
+extern void append (char **charPP, char *fromP, unsigned long length);
+extern void record_alignment (segT seg, int align);
+extern int get_recorded_alignment (segT seg);
+extern void subsegs_finish (void);
+extern void write_object_file (void);
+extern long relax_frag (segT, fragS *, long);
+extern int relax_segment (struct frag * seg_frag_root, segT seg_type);
+
+extern void number_to_chars_littleendian (char *, valueT, int);
+extern void number_to_chars_bigendian (char *, valueT, int);
#ifdef BFD_ASSEMBLER
extern fixS *fix_new
- PARAMS ((fragS * frag, int where, int size, symbolS * add_symbol,
- offsetT offset, int pcrel, bfd_reloc_code_real_type r_type));
+ (fragS * frag, int where, int size, symbolS * add_symbol,
+ offsetT offset, int pcrel, bfd_reloc_code_real_type r_type);
extern fixS *fix_new_exp
- PARAMS ((fragS * frag, int where, int size, expressionS *exp, int pcrel,
- bfd_reloc_code_real_type r_type));
+ (fragS * frag, int where, int size, expressionS *exp, int pcrel,
+ bfd_reloc_code_real_type r_type);
#else
extern fixS *fix_new
- PARAMS ((fragS * frag, int where, int size, symbolS * add_symbol,
- offsetT offset, int pcrel, int r_type));
+ (fragS * frag, int where, int size, symbolS * add_symbol,
+ offsetT offset, int pcrel, int r_type);
extern fixS *fix_new_exp
- PARAMS ((fragS * frag, int where, int size, expressionS *exp, int pcrel,
- int r_type));
+ (fragS * frag, int where, int size, expressionS *exp, int pcrel,
+ int r_type);
#endif
-extern void write_print_statistics PARAMS ((FILE *));
+extern void write_print_statistics (FILE *);
#endif /* __write_h__ */