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
diff options
context:
space:
mode:
-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 )
{