Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bench
diff options
context:
space:
mode:
authorSamuel Neves <sneves@dei.uc.pt>2016-06-12 20:09:50 +0300
committerSamuel Neves <sneves@dei.uc.pt>2016-06-12 20:09:50 +0300
commit0ee2296e9855f4bbd98f9e86d0c35cc48d4cc732 (patch)
tree1f8a1d0538e3e8e8231f0478411398ef7325df6e /bench
parent987a2d74bddf5c07079451d5efffc09d43331876 (diff)
c89ify bench as well
Diffstat (limited to 'bench')
-rw-r--r--bench/makefile2
-rw-r--r--bench/md5.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/bench/makefile b/bench/makefile
index 573d4b0..8945dba 100644
--- a/bench/makefile
+++ b/bench/makefile
@@ -1,6 +1,6 @@
CC=gcc
# std to gnu99 to support inline asm
-CFLAGS=-std=gnu99 -O3 -march=native -DSUPERCOP # -DHAVE_XOP # uncomment on XOP-enabled CPUs
+CFLAGS=-O3 -march=native -DSUPERCOP # -DHAVE_XOP # uncomment on XOP-enabled CPUs
FILES=bench.c
all: bench
diff --git a/bench/md5.c b/bench/md5.c
index 1f6164e..3931ab6 100644
--- a/bench/md5.c
+++ b/bench/md5.c
@@ -14,7 +14,6 @@
*/
#include <stddef.h>
#include <openssl/md5.h>
-//#include "crypto_hash.h"
int crypto_hash( unsigned char *out, const unsigned char *in, unsigned long long inlen )
{