style: 'The function type should be on a line by itself preceding the function.'
authorguenther <guenther@openbsd.org>
Mon, 31 Oct 2022 03:20:41 +0000 (03:20 +0000)
committerguenther <guenther@openbsd.org>
Mon, 31 Oct 2022 03:20:41 +0000 (03:20 +0000)
sys/arch/alpha/alpha/sys_machdep.c

index 657bd7a..492c071 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_machdep.c,v 1.7 2008/06/26 05:42:08 ray Exp $     */
+/*     $OpenBSD: sys_machdep.c,v 1.8 2022/10/31 03:20:41 guenther Exp $        */
 /*     $NetBSD: sys_machdep.c,v 1.14 2002/01/14 00:53:16 thorpej Exp $ */
 
 /*-
@@ -143,7 +143,8 @@ sys_sysarch(struct proc *p, void *v, register_t *retval)
        return (error);
 }
 #else
-int sys_sysarch(struct proc *p, void *v, register_t *retval)
+int
+sys_sysarch(struct proc *p, void *v, register_t *retval)
 {
        return (ENOSYS);
 }