summaryrefslogtreecommitdiff
path: root/gas/input-scrub.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-12-12 19:29:24 +0000
committerNick Clifton <nickc@redhat.com>2000-12-12 19:29:24 +0000
commit056ca9c00a2b11827f9fbf3cb396e38ba4ac3c12 (patch)
tree25613a3aff03dc14af9c2a2d7f42d8e60cc6f189 /gas/input-scrub.c
parent0845206aa9d70880e6de682251dc86e691b1445b (diff)
downloadbinutils-redhat-056ca9c00a2b11827f9fbf3cb396e38ba4ac3c12.tar.gz
Fix formatting
Diffstat (limited to 'gas/input-scrub.c')
-rw-r--r--gas/input-scrub.c33
1 files changed, 17 insertions, 16 deletions
diff --git a/gas/input-scrub.c b/gas/input-scrub.c
index ee5bdc894f..6650892fc3 100644
--- a/gas/input-scrub.c
+++ b/gas/input-scrub.c
@@ -102,22 +102,23 @@ static line_numberT physical_input_line;
static int logical_input_line;
/* Struct used to save the state of the input handler during include files */
-struct input_save {
- char *buffer_start;
- char *partial_where;
- int partial_size;
- char save_source[AFTER_SIZE];
- unsigned int buffer_length;
- char *physical_input_file;
- char *logical_input_file;
- line_numberT physical_input_line;
- int logical_input_line;
- int sb_index;
- sb from_sb;
- int from_sb_is_expansion; /* Should we do a conditional check? */
- struct input_save *next_saved_file; /* Chain of input_saves */
- char *input_file_save; /* Saved state of input routines */
- char *saved_position; /* Caller's saved position in buf */
+struct input_save
+{
+ char * buffer_start;
+ char * partial_where;
+ int partial_size;
+ char save_source[AFTER_SIZE];
+ unsigned int buffer_length;
+ char * physical_input_file;
+ char * logical_input_file;
+ line_numberT physical_input_line;
+ int logical_input_line;
+ int sb_index;
+ sb from_sb;
+ int from_sb_is_expansion; /* Should we do a conditional check? */
+ struct input_save * next_saved_file; /* Chain of input_saves. */
+ char * input_file_save; /* Saved state of input routines. */
+ char * saved_position; /* Caller's saved position in buf. */
};
static struct input_save *input_scrub_push PARAMS ((char *saved_position));