diff options
author | Keith Packard <keithp@keithp.com> | 2019-02-04 22:24:37 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-02-18 13:08:23 -0800 |
commit | c11427819ca24bb77523496309b5b6f699d126c5 (patch) | |
tree | 29cab045cde088881d971b175708245b17d09ce6 /src/stm/ao_interrupt.c | |
parent | 119a829e58aff5dd7801fe7ef8cae886bf31fec1 (diff) |
altos: Mark local functions 'static'
Working towards supporting -Wmissing-prototypes
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm/ao_interrupt.c')
-rw-r--r-- | src/stm/ao_interrupt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stm/ao_interrupt.c b/src/stm/ao_interrupt.c index d8be3667..a98d799a 100644 --- a/src/stm/ao_interrupt.c +++ b/src/stm/ao_interrupt.c @@ -29,12 +29,12 @@ extern char __bss_start__, __bss_end__; /* Interrupt functions */ -void stm_halt_isr(void) +static void stm_halt_isr(void) { ao_panic(AO_PANIC_CRASH); } -void stm_ignore_isr(void) +static void stm_ignore_isr(void) { } |