mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
More void, fixing "function declaration is not a prototype" [-Wstrict-prototypes]
This commit is contained in:
parent
7f76fea21a
commit
c10e47f8a9
2 changed files with 7 additions and 7 deletions
|
@ -41,11 +41,11 @@
|
|||
#include "proxmark3.h" // USB_CONNECT()
|
||||
#include "common.h"
|
||||
|
||||
void usb_disable();
|
||||
void usb_enable();
|
||||
bool usb_check();
|
||||
bool usb_poll();
|
||||
bool usb_poll_validate_length();
|
||||
void usb_disable(void);
|
||||
void usb_enable(void);
|
||||
bool usb_check(void);
|
||||
bool usb_poll(void);
|
||||
bool usb_poll_validate_length(void);
|
||||
uint32_t usb_read(uint8_t *data, size_t len);
|
||||
uint32_t usb_write(const uint8_t *data, const size_t len);
|
||||
|
||||
|
@ -57,7 +57,7 @@ int GetUSBconfigured(void);
|
|||
void AT91F_USB_SendData(AT91PS_UDP pUdp, const char *pData, uint32_t length);
|
||||
void AT91F_USB_SendZlp(AT91PS_UDP pUdp);
|
||||
void AT91F_USB_SendStall(AT91PS_UDP pUdp);
|
||||
void AT91F_CDC_Enumerate();
|
||||
void AT91F_CDC_Enumerate(void);
|
||||
|
||||
#endif // _USB_CDC_H_
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <stdint.h>
|
||||
void legic_prng_init(uint8_t iv);
|
||||
void legic_prng_forward(int count);
|
||||
uint8_t legic_prng_get_bit();
|
||||
uint8_t legic_prng_get_bit(void);
|
||||
uint32_t legic_prng_get_bits(uint8_t len);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue