ref: 0ee2296e9855f4bbd98f9e86d0c35cc48d4cc732
parent: 987a2d74bddf5c07079451d5efffc09d43331876
author: Samuel Neves <sneves@dei.uc.pt>
date: Sun Jun 12 14:09:50 EDT 2016
c89ify bench as well
--- 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
--- 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 )
{
--
⑨