mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
CHG: continue code cleanup.
REM: removed stdint.h , since we are using c99 when compiling.
This commit is contained in:
parent
9c624f67b3
commit
07bc72b880
12 changed files with 66 additions and 157 deletions
|
@ -9,7 +9,7 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
#include "string.h"
|
||||
|
||||
void *memcpy(void *dest, const void *src, int len)
|
||||
RAMFUNC void *memcpy(void *dest, const void *src, int len)
|
||||
{
|
||||
uint8_t *d = dest;
|
||||
const uint8_t *s = src;
|
||||
|
@ -31,7 +31,7 @@ void *memset(void *dest, int c, int len)
|
|||
return dest;
|
||||
}
|
||||
|
||||
int memcmp(const void *av, const void *bv, int len)
|
||||
RAMFUNC int memcmp(const void *av, const void *bv, int len)
|
||||
{
|
||||
const uint8_t *a = av;
|
||||
const uint8_t *b = bv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue