1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-11-08 14:59:19 +01:00

c89ify bench as well

This commit is contained in:
Samuel Neves 2016-06-12 18:09:50 +01:00
parent 987a2d74bd
commit 0ee2296e98
2 changed files with 1 additions and 2 deletions

@ -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

@ -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 )
{