Fix functions with empty params (#19647)
* Fix functions with empty params * Found a bunch moremaster
parent
0f77ae6a20
commit
cf935d97ae
@ -1,9 +1,9 @@ |
||||
#include "the50.h" |
||||
|
||||
void the50_led_on() { |
||||
void the50_led_on(void) { |
||||
DDRB |= (1 << 7); PORTB &= ~(1 << 7); |
||||
} |
||||
|
||||
void the50_led_off() { |
||||
void the50_led_off(void) { |
||||
DDRB &= ~(1 << 7); PORTB &= ~(1 << 7); |
||||
} |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue