order to avoid compile time warnings.
+2005-01-04  Martin Koegler  <mkoegler@auto.tuwien.ac.at>
+
+       * binutils-all/testprog.c: Add prototype for printf() and make
+       type of "string" array be "char" in order to avoid compile time
+       warnings.
+
 2004-12-31  Alan Modra  <amodra@bigpond.net.au>
 
        * binutils-all/readelf.ss: Allow for both .rel and .rela sections.
 
 /* This program is used to test objcopy, readelf and strip.  */
 
 extern int strcmp (char *, const char *);
+extern int printf (const char *, ...);
 
 int common;
 int global = 1;
 static int local = 2;
-static unsigned char string[] = "string";
+static char string[] = "string";
 
 int
-fn ()
+fn (void)
 {
   return 3;
 }
 
 int
-main ()
+main (void)
 {
   if (common != 0
       || global != 1
       || strcmp (string, "string") != 0)
     {
       printf ("failed\n");
-      return (1);
+      return 1;
     }
 
   printf ("ok\n");
-  return (0);
+  return 0;
 }