mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
marcan's patch until he gets commit access. Remove C library's includes from the firmware side since it's not available anyway and not used
This commit is contained in:
parent
cbb03be993
commit
5e174a511b
8 changed files with 85 additions and 7 deletions
|
@ -6,7 +6,6 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include <proxmark3.h>
|
||||
#include <stdlib.h>
|
||||
#include "apps.h"
|
||||
#include "legicrf.h"
|
||||
#ifdef WITH_LCD
|
||||
|
@ -20,6 +19,9 @@
|
|||
#define va_end __builtin_va_end
|
||||
int kvsprintf(char const *fmt, void *arg, int radix, va_list ap);
|
||||
|
||||
|
||||
#define abs(x) ( ((x)<0) ? -(x) : (x) )
|
||||
|
||||
//=============================================================================
|
||||
// A buffer where we can queue things up to be sent through the FPGA, for
|
||||
// any purpose (fake tag, as reader, whatever). We go MSB first, since that
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue