Merge pull request #250 from pwpiwi/fix_mfkey

fix mfkey tools (issue #247)
This commit is contained in:
Iceman 2017-03-26 13:05:26 +02:00 committed by GitHub
commit 7cd25ae5a3
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
VPATH = ../../common ../../common/crapto1 ../../client
CC = gcc
LD = gcc
CFLAGS = -I../../common -I../../client -Wall -O4
CFLAGS = -std=c99 -D_ISOC99_SOURCE -I../../common -I../../client -Wall -O3
LDFLAGS =
OBJS = crypto1.o crapto1.o parity.o util.o mfkey.o

View file

@ -1,5 +1,5 @@
#include <stdio.h>
#include <strings.h>
#include <string.h>
#include <inttypes.h>
#include "crapto1/crapto1.h"
#include "util.h"