summaryrefslogtreecommitdiff
path: root/stringbench.c
diff options
context:
space:
mode:
Diffstat (limited to 'stringbench.c')
-rw-r--r--stringbench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stringbench.c b/stringbench.c
index 804d76c..7dcc9fd 100644
--- a/stringbench.c
+++ b/stringbench.c
@@ -6,7 +6,7 @@
#define START gettimeofday(&tv1, 0);
#define END(x) gettimeofday(&tv2, 0); t1 = ((double)tv1.tv_sec)+((double)tv1.tv_usec)/1000000.0; t2 = ((double)tv2.tv_sec)+((double)tv2.tv_usec)/1000000.0; printf("%s: %f seconds\n", x, t2-t1)
-int main(int argc, char **argv) {
+int main(int argc __unused, char **argv __unused) {
struct timeval tv1, tv2;
double t1, t2;
char * const s = (char * const) malloc(16);