OSDN Git Service

* timevar.h (timevar_get): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / gcov-iov.c
index fd103c4..d6b39de 100644 (file)
@@ -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,15 +54,15 @@ 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];
 
   printf ("/* Generated automatically by the program `%s'\n", argv[0]);
   printf ("   from `%s'.  */\n", version_string);
   printf ("\n");
-  printf ("#define GCOV_VERSION ((unsigned)%#08x)  /* %.4s */\n",
+  printf ("#define GCOV_VERSION ((gcov_unsigned_t)%#08x)  /* %.4s */\n",
          version, v);
-  
+
   return 0;
 }