summaryrefslogtreecommitdiff
path: root/cleanbench.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-16 02:47:07 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-16 02:47:07 +0000
commit761470f9b51f2df8d25baf6060a7acfd333ba698 (patch)
tree558196b2821bef0d9a9e517ec45d1c3151a17497 /cleanbench.c
parent2861edd74c9c21fb98da6fafe38718126a0bd99f (diff)
Delete hardware.h, move prototype directly into cleanbench.c
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@64 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'cleanbench.c')
-rw-r--r--cleanbench.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/cleanbench.c b/cleanbench.c
index f2b8fd5..3d14e54 100644
--- a/cleanbench.c
+++ b/cleanbench.c
@@ -21,8 +21,10 @@ double DoHuffman(void);
double DoNNET(void);
double DoLU(void);
+void hardware(void);
+
static bool bench_with_confidence(int benchmark, double* average, double* std_dev, int* runs);
-static bool calc_confidence(double scores[], int runs, double *c_half_interval,double* average, double* std_dev);
+static bool calc_confidence(double scores[], int runs, double* c_half_interval, double* average, double* std_dev);
#define NUM_TESTS 10