mark additional function as static

This commit is contained in:
Henry Gabryjelski 2024-03-01 20:16:42 -08:00
commit d3ae908b5f
2 changed files with 4 additions and 2 deletions

View file

@ -79,7 +79,8 @@ static void print_info_result(const uint8_t *data) {
}
int em4x70_info(void) {
// Note: arm source has a function with same name ... different signature.
static int em4x70_info(void) {
em4x70_data_t edata = {
.parity = false // TODO: try both? or default to true

View file

@ -31,8 +31,9 @@ int CmdEM4x70Unlock(const char *Cmd);
int CmdEM4x70Auth(const char *Cmd);
int CmdEM4x70WritePIN(const char *Cmd);
int CmdEM4x70WriteKey(const char *Cmd);
//int CmdEM4x70Recover(const char *Cmd);
int em4x70_info(void);
// for `lf search`:
bool detect_4x70_block(void);
#endif