diff options
author | Nick Clifton <nickc@redhat.com> | 2000-12-12 19:29:24 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-12-12 19:29:24 +0000 |
commit | e972090a0404a663fe10db32ba50dbdc841e7dc1 (patch) | |
tree | 7a5fd1d9741a95328e25dfec018724a83ca6619a /gas/input-scrub.c | |
parent | d4c0c039516e9a04d7f55e971fd0b8e75cbcb716 (diff) | |
download | gdb-e972090a0404a663fe10db32ba50dbdc841e7dc1.zip gdb-e972090a0404a663fe10db32ba50dbdc841e7dc1.tar.gz gdb-e972090a0404a663fe10db32ba50dbdc841e7dc1.tar.bz2 |
Fix formatting
Diffstat (limited to 'gas/input-scrub.c')
-rw-r--r-- | gas/input-scrub.c | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/gas/input-scrub.c b/gas/input-scrub.c index ee5bdc8..6650892 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)); |