mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 15:44:47 +08:00
Merge pull request #250 from pwpiwi/fix_mfkey
fix mfkey tools (issue #247)
This commit is contained in:
commit
7cd25ae5a3
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include <stdio.h>
|
||||
#include <strings.h>
|
||||
#include <string.h>
|
||||
#include <inttypes.h>
|
||||
#include "crapto1/crapto1.h"
|
||||
#include "util.h"
|
||||
|
|
Loading…
Reference in a new issue