mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
unshadow, multiple defines.
This commit is contained in:
parent
91e34643ab
commit
21d88ae2c2
2 changed files with 6 additions and 2 deletions
|
@ -19,7 +19,9 @@
|
||||||
|
|
||||||
#include "dump.h"
|
#include "dump.h"
|
||||||
|
|
||||||
#define PRINT_INDENT(level) {for (int myi = 0; myi < (level); myi++) fprintf(f, " ");}
|
#ifndef PRINT_INDENT
|
||||||
|
# define PRINT_INDENT(level) {for (int myi = 0; myi < (level); myi++) fprintf(f, " ");}
|
||||||
|
#endif
|
||||||
|
|
||||||
void dump_buffer_simple(const unsigned char *ptr, size_t len, FILE *f) {
|
void dump_buffer_simple(const unsigned char *ptr, size_t len, FILE *f) {
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -23,7 +23,9 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define PRINT_INDENT(level) {for (int i = 0; i < (level); i++) fprintf(f, " ");}
|
#ifndef PRINT_INDENT
|
||||||
|
# define PRINT_INDENT(level) {for (int myi = 0; myi < (level); myi++) fprintf(f, " ");}
|
||||||
|
#endif
|
||||||
|
|
||||||
enum emv_tag_t {
|
enum emv_tag_t {
|
||||||
EMV_TAG_GENERIC,
|
EMV_TAG_GENERIC,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue