summaryrefslogtreecommitdiff
path: root/gcc/gcov-iov.c
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/gcov-iov.c
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/gcov-iov.c')
-rw-r--r--gcc/gcov-iov.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/gcc/gcov-iov.c b/gcc/gcov-iov.c
index fd103c4ddd4..a4ceeccbd3e 100644
--- a/gcc/gcov-iov.c
+++ b/gcc/gcov-iov.c
@@ -1,8 +1,8 @@
/* Generate gcov version string from version.c. See gcov-io.h for
description of how the version string is generated.
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
Contributed by Nathan Sidwell <nathan@codesourcery.com>
-
+
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
@@ -26,12 +26,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#include "tm.h"
#include "version.c" /* We want the actual string. */
-int main PARAMS ((int, char **));
+int main (int, char **);
int
-main (argc, argv)
- int argc ATTRIBUTE_UNUSED;
- char **argv;
+main (int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED)
{
unsigned version = 0;
unsigned char v[4];
@@ -56,7 +54,7 @@ main (argc, argv)
v[1] = (minor / 10) + '0';
v[2] = (minor % 10) + '0';
v[3] = s ? s : '*';
-
+
for (ix = 0; ix != 4; ix++)
version = (version << 8) | v[ix];
@@ -65,6 +63,6 @@ main (argc, argv)
printf ("\n");
printf ("#define GCOV_VERSION ((unsigned)%#08x) /* %.4s */\n",
version, v);
-
+
return 0;
}