diff options
author | Keith Packard <keithp@keithp.com> | 2019-09-23 12:39:42 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-09-23 12:44:33 -0700 |
commit | 77e6bad5e66023e487430ef31244edaeaef7c606 (patch) | |
tree | 6f6cb1f479a279b6079ccf4abec0fe28f5eebad2 /src/chaoskey-v1.0/ao_chaoskey.c | |
parent | 3979c88417fd5512447f5d02cc660522dff5d9d6 (diff) |
altos: Switch all main() to return 'int'
Makes gcc happy
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/chaoskey-v1.0/ao_chaoskey.c')
-rw-r--r-- | src/chaoskey-v1.0/ao_chaoskey.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chaoskey-v1.0/ao_chaoskey.c b/src/chaoskey-v1.0/ao_chaoskey.c index 80f5a4ba..4488208d 100644 --- a/src/chaoskey-v1.0/ao_chaoskey.c +++ b/src/chaoskey-v1.0/ao_chaoskey.c @@ -22,7 +22,8 @@ #include <ao_trng_send.h> #include <ao_flash_readout.h> -void main(void) +int +main(void) { ao_led_init(); ao_clock_init(); |