diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-26 01:40:50 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-26 01:40:50 +0000 |
commit | dcedd4374abb6f3456f8d6bc995601732ffaacf4 (patch) | |
tree | d1505a7186d140aa1f41f3c8e28a12c551ba400a /sys/arch/sh | |
parent | f02c64296a18ec9595fe6efcb29e617c260ba9b9 (diff) |
return type on a dedicated line when declaring functions
ok mglocker@
Diffstat (limited to 'sys/arch/sh')
-rw-r--r-- | sys/arch/sh/sh/interrupt.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sh/sh/interrupt.c b/sys/arch/sh/sh/interrupt.c index a2caa6ba666..20c5bf4fabb 100644 --- a/sys/arch/sh/sh/interrupt.c +++ b/sys/arch/sh/sh/interrupt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: interrupt.c,v 1.18 2024/05/22 14:25:47 jsg Exp $ */ +/* $OpenBSD: interrupt.c,v 1.19 2024/06/26 01:40:49 jsg Exp $ */ /* $NetBSD: interrupt.c,v 1.18 2006/01/25 00:02:57 uwe Exp $ */ /*- @@ -663,7 +663,8 @@ softintr_disestablish(void *arg) } /* Schedule a software interrupt. */ -void softintr_schedule(void *arg) +void +softintr_schedule(void *arg) { struct sh_soft_intrhand *sih = arg; struct sh_soft_intr *si = sih->sih_intrhead; |