summaryrefslogtreecommitdiff
path: root/gcc/input.h
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-06 06:15:36 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-06 06:15:36 +0000
commit952f00483ebc3e30bc9f0f76f4b80258e4fcef43 (patch)
tree5608aad0f59e34928c3ebcd5b5bf7492d6a81e96 /gcc/input.h
parentb944ea74582a3520691dc4c1ecf8130c8a6491d3 (diff)
downloadgcc-952f00483ebc3e30bc9f0f76f4b80258e4fcef43.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68995 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/input.h')
-rw-r--r--gcc/input.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/input.h b/gcc/input.h
index 6dd12521eef..f422f74f98f 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