diff options
author | Stan Shebs <shebs@codesourcery.com> | 1993-09-07 17:39:56 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1993-09-07 17:39:56 +0000 |
commit | 4064305ec08e84f8857e65e3281e389a3dffed45 (patch) | |
tree | 405eba3c65bc39c5789ce00caf92c9afe4049cb2 /gas/read.h | |
parent | f3e8b15d8e4ac6ff46fefe7ae67dda956285f6cb (diff) | |
download | gdb-4064305ec08e84f8857e65e3281e389a3dffed45.zip gdb-4064305ec08e84f8857e65e3281e389a3dffed45.tar.gz gdb-4064305ec08e84f8857e65e3281e389a3dffed45.tar.bz2 |
Changes to support stabs-in-coff
Diffstat (limited to 'gas/read.h')
-rw-r--r-- | gas/read.h | 127 |
1 files changed, 41 insertions, 86 deletions
@@ -53,91 +53,46 @@ extern const char comment_chars[]; extern const char line_comment_chars[]; extern const char line_separator_chars[]; -#if __STDC__ == 1 - -char *demand_copy_C_string (int *len_pointer); -char get_absolute_expression_and_terminator (long *val_pointer); -long get_absolute_expression (void); -void add_include_dir (char *path); -void big_cons (int nbytes); -void cons (unsigned int nbytes); -void demand_empty_rest_of_line (void); -void equals (char *sym_name); -void float_cons (int float_type); -void ignore_rest_of_line (void); -void pseudo_set (symbolS * symbolP); -void read_a_source_file (char *name); -void read_begin (void); -void s_abort (void); -void s_align_bytes (int arg); -void s_align_ptwo (void); -void s_app_file (void); -/* void s_bss(void); -- unneeded; always static when used */ -void s_comm (void); -void s_data (void); -void s_else (int arg); -void s_end (int arg); -void s_endif (int arg); -void s_fill (void); -void s_globl (void); -void s_if (int arg); -void s_ifdef (int arg); -void s_ifeqs (int arg); -void s_ignore (int arg); -void s_include (int arg); -void s_lcomm (int needs_align); -void s_lsym (void); -void s_org (void); -void s_set (void); -void s_space (int mult); -void s_text (void); - -#else /* not __STDC__ */ - -char *demand_copy_C_string (); -char get_absolute_expression_and_terminator (); -long get_absolute_expression (); -void add_include_dir (); -void big_cons (); -void cons (); -void demand_empty_rest_of_line (); -void equals (); -void float_cons (); -void ignore_rest_of_line (); -void pseudo_set (); -void read_a_source_file (); -void read_begin (); -void s_abort (); -void s_align_bytes (); -void s_align_ptwo (); -void s_app_file (); -/* void s_bss(); -- unneeded; always static when used */ -void s_comm (); -void s_data (); -void s_else (); -void s_end (); -void s_endif (); -void s_fill (); -void s_globl (); -void s_if (); -void s_ifdef (); -void s_ifeqs (); -void s_ignore (); -void s_include (); -void s_lcomm (); -void s_lsym (); -void s_org (); -void s_set (); -void s_space (); -void s_text (); - -#endif /* not __STDC__ */ - -/* - * Local Variables: - * comment-column: 0 - * fill-column: 131 - * End: - */ +char *demand_copy_C_string PARAMS ((int *len_pointer)); +char get_absolute_expression_and_terminator PARAMS ((long *val_pointer)); +long get_absolute_expression PARAMS ((void)); +void add_include_dir PARAMS ((char *path)); +void big_cons PARAMS ((int nbytes)); +void cons PARAMS ((unsigned int nbytes)); +void demand_empty_rest_of_line PARAMS ((void)); +void emit_expr PARAMS ((expressionS *exp, unsigned int nbytes)); +void equals PARAMS ((char *sym_name)); +void float_cons PARAMS ((int float_type)); +void ignore_rest_of_line PARAMS ((void)); +void pseudo_set PARAMS ((symbolS * symbolP)); +void read_a_source_file PARAMS ((char *name)); +void read_begin PARAMS ((void)); +void s_abort PARAMS ((void)); +void s_align_bytes PARAMS ((int arg)); +void s_align_ptwo PARAMS ((void)); +void s_app_file PARAMS ((int)); +void s_app_line PARAMS ((void)); +void s_comm PARAMS ((void)); +void s_data PARAMS ((void)); +void s_desc PARAMS ((void)); +void s_else PARAMS ((int arg)); +void s_end PARAMS ((int arg)); +void s_endif PARAMS ((int arg)); +void s_fill PARAMS ((void)); +void s_globl PARAMS ((void)); +void s_if PARAMS ((int arg)); +void s_ifdef PARAMS ((int arg)); +void s_ifeqs PARAMS ((int arg)); +void s_ignore PARAMS ((int arg)); +void s_include PARAMS ((int arg)); +void s_lcomm PARAMS ((int needs_align)); +void s_lsym PARAMS ((void)); +void s_org PARAMS ((void)); +void s_set PARAMS ((void)); +void s_space PARAMS ((int mult)); +void s_stab PARAMS ((int what)); +void s_text PARAMS ((void)); +void stringer PARAMS ((int append_zero)); +void s_xstab PARAMS ((int what)); /* end of read.h */ |