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/lpc/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/lpc/ao_interrupt.c')
-rw-r--r-- | src/lpc/ao_interrupt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lpc/ao_interrupt.c b/src/lpc/ao_interrupt.c index 8d71f43f..77be7fab 100644 --- a/src/lpc/ao_interrupt.c +++ b/src/lpc/ao_interrupt.c @@ -40,12 +40,12 @@ extern char __interrupt_rom__, __interrupt_start__, __interrupt_end__; /* Interrupt functions */ -void lpc_halt_isr(void) +static void lpc_halt_isr(void) { ao_panic(AO_PANIC_CRASH); } -void lpc_ignore_isr(void) +static void lpc_ignore_isr(void) { } |