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/stmf0/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/stmf0/ao_interrupt.c')
| -rw-r--r-- | src/stmf0/ao_interrupt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stmf0/ao_interrupt.c b/src/stmf0/ao_interrupt.c index 81878d89..ab835bac 100644 --- a/src/stmf0/ao_interrupt.c +++ b/src/stmf0/ao_interrupt.c @@ -43,12 +43,12 @@ extern char __interrupt_rom__, __interrupt_start__, __interrupt_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) { } |
