diff options
| author | Andreas Jaeger <aj@suse.de> | 2003-07-06 08:15:36 +0200 |
|---|---|---|
| committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-07-06 08:15:36 +0200 |
| commit | 1d088deebefc04b8c99fe00e4df4e9c4ddacec2d (patch) | |
| tree | 5608aad0f59e34928c3ebcd5b5bf7492d6a81e96 /gcc/input.h | |
| parent | 481668695af894b6738d2d64f3e005b2709399c5 (diff) | |
| download | gcc-1d088deebefc04b8c99fe00e4df4e9c4ddacec2d.zip gcc-1d088deebefc04b8c99fe00e4df4e9c4ddacec2d.tar.gz gcc-1d088deebefc04b8c99fe00e4df4e9c4ddacec2d.tar.bz2 | |
gcc.c: Convert prototypes to ISO C90.
* gcc.c: Convert prototypes to ISO C90.
* gcc.h: Likewise.
* gcov-dump.c: Likewise.
* gcov-iov.c: Likewise.
* gcse.c: Likewise.
* genattrtab.h: Likewise.
* ggc.h: Likewise.
* global.c: Likewise.
* graph.c: Likewise.
* graph.h: Likewise.
* hosthooks.h: Likewise.
* hooks.h: Likewise.
* hooks.c: Likewise.
* hashtable.h: Likewise.
* hashtable.c: Likewise.
* haifa-sched.c: Likewise.
* integrate.h: Likewise.
* integrate.c: Likewise.
* input.h: Likewise.
* ifcvt.c: Likewise.
From-SVN: r68995
Diffstat (limited to 'gcc/input.h')
| -rw-r--r-- | gcc/input.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/input.h b/gcc/input.h index 6dd1252..f422f74 100644 --- a/gcc/input.h +++ b/gcc/input.h @@ -25,7 +25,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* The data structure used to record a location in a translation unit. */ struct location_s GTY (()) { - /* The name of the source file involved. */ + /* The name of the source file involved. */ const char *file; /* The line-location in the source file. */ @@ -53,7 +53,7 @@ extern struct file_stack *input_file_stack; /* Incremented on each change to input_file_stack. */ extern int input_file_stack_tick; -extern void push_srcloc PARAMS ((const char *name, int line)); -extern void pop_srcloc PARAMS ((void)); +extern void push_srcloc (const char *name, int line); +extern void pop_srcloc (void); #endif |
