mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-13 08:43:01 -07:00
fix mfkey tools (issue #247)
- add -std=c99 -D_ISOC99_SOURCE to compiler flags - fix: include <string.h> instead of <strings.h> in mfkey64.c
This commit is contained in:
parent
f513388ee0
commit
dc2349ae77
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
VPATH = ../../common/crapto1 ../../client
|
VPATH = ../../common/crapto1 ../../client
|
||||||
CC = gcc
|
CC = gcc
|
||||||
LD = gcc
|
LD = gcc
|
||||||
CFLAGS = -I../../common -I../../client -Wall -O4
|
CFLAGS = -std=c99 -D_ISOC99_SOURCE -I../../common -I../../client -Wall -O3
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
|
|
||||||
OBJS = crypto1.o crapto1.o util.o mfkey.o
|
OBJS = crypto1.o crapto1.o util.o mfkey.o
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <strings.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include "crapto1/crapto1.h"
|
#include "crapto1/crapto1.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue