aboutsummaryrefslogtreecommitdiff
path: root/gas/input-file.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2000-11-06 21:55:46 +0000
committerKazu Hirata <kazu@codesourcery.com>2000-11-06 21:55:46 +0000
commit7152f1dc4515cb14067fed4c5d5b5374f0d475b4 (patch)
tree96cd496d26eea1000d23ae79081ae6d5a759efbb /gas/input-file.c
parentc7db355bcdf4f72eb71aea0c32506e163b0c4613 (diff)
downloadgdb-7152f1dc4515cb14067fed4c5d5b5374f0d475b4.zip
gdb-7152f1dc4515cb14067fed4c5d5b5374f0d475b4.tar.gz
gdb-7152f1dc4515cb14067fed4c5d5b5374f0d475b4.tar.bz2
2000-11-06 Kazu Hirata <kazu@hxi.com>
* input-file.c: Fix formatting. * input-file.h: Likewise. * input-scrub.c: Likewise.
Diffstat (limited to 'gas/input-file.c')
-rw-r--r--gas/input-file.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/gas/input-file.c b/gas/input-file.c
index 339c4da..b390a8f 100644
--- a/gas/input-file.c
+++ b/gas/input-file.c
@@ -1,5 +1,5 @@
/* input_file.c - Deal with Input Files -
- Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 98, 1999
+ Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 98, 99, 2000
Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -57,13 +57,12 @@ static FILE *f_in;
static char *file_name;
/* Struct for saving the state of this module for file includes. */
-struct saved_file
- {
- FILE *f_in;
- char *file_name;
- int preprocess;
- char *app_save;
- };
+struct saved_file {
+ FILE *f_in;
+ char *file_name;
+ int preprocess;
+ char *app_save;
+};
/* These hooks accomodate most operating systems. */
@@ -188,7 +187,7 @@ input_file_close ()
fclose (f_in);
} /* don't close a null file pointer */
f_in = 0;
-} /* input_file_close() */
+}
/* This function is passed to do_scrub_chars. */
@@ -245,5 +244,3 @@ input_file_give_next_buffer (where)
}
return (return_value);
}
-
-/* end of input-file.c */