summaryrefslogtreecommitdiff
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
commitfca231f11d18b087dcc0a4f9dcb927b2143ac340 (patch)
treeef510c9abc482c7d0f0ea2ef277b1895ace7804c /gas/input-file.c
parent159376864b2d9c1ef8550cb8dd5d6bb47ca2bc9c (diff)
downloadbinutils-redhat-fca231f11d18b087dcc0a4f9dcb927b2143ac340.tar.gz
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 339c4dafa9..b390a8fca7 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 */