Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
chcmedeiros committed Mar 1, 2024
1 parent cf61248 commit 8ee520e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/addr.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>

#include "zxerror.h"

// Return the number of items in the address view
zxerr_t addr_getNumItems(uint8_t *num_items);
Expand Down
3 changes: 3 additions & 0 deletions app/src/eth_addr.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>

#include "zxerror.h"

/// Return the number of items in the address view
zxerr_t eth_addr_getNumItems(uint8_t *num_items);
Expand Down
2 changes: 2 additions & 0 deletions app/src/hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>

#include "zxerror.h"

const char *hash_parse();
Expand Down

0 comments on commit 8ee520e

Please sign in to comment.