about summary refs log tree commit diff
path: root/benchtests
diff options
context:
space:
mode:
Diffstat (limited to 'benchtests')
-rw-r--r--benchtests/bench-skeleton.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/benchtests/bench-skeleton.c b/benchtests/bench-skeleton.c
index a13ad02177..404900bd64 100644
--- a/benchtests/bench-skeleton.c
+++ b/benchtests/bench-skeleton.c
@@ -23,7 +23,9 @@
 #include <inttypes.h>
 
 volatile unsigned int dontoptimize = 0;
-void startup ()
+
+void
+startup (void)
 {
   /* This loop should cause CPU to switch to maximal freqency.
      This makes subsequent measurement more accurate.  We need a side effect
@@ -31,9 +33,7 @@ void startup ()
      This should be enough to cause CPU to speed up and it is simpler than
      running loop for constant time. This is used when user does not have root
      access to set a constant freqency.  */
-
-  int k;
-  for (k = 0; k < 10000000; k++)
+  for (int k = 0; k < 10000000; k++)
     dontoptimize += 23 * dontoptimize + 2;
 }