Module Name: src
Committed By: andvar
Date: Tue Nov 7 21:19:04 UTC 2023
Modified Files:
src/sys/arch/playstation2/playstation2: kloader_machdep.c
Log Message:
add explicit void in function declaration to fix old-style function declaration.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/sys/arch/playstation2/playstation2/kloader_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/playstation2/playstation2/kloader_machdep.c
diff -u src/sys/arch/playstation2/playstation2/kloader_machdep.c:1.5 src/sys/arch/playstation2/playstation2/kloader_machdep.c:1.6
--- src/sys/arch/playstation2/playstation2/kloader_machdep.c:1.5 Mon Mar 31 11:25:49 2014
+++ src/sys/arch/playstation2/playstation2/kloader_machdep.c Tue Nov 7 21:19:04 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: kloader_machdep.c,v 1.5 2014/03/31 11:25:49 martin Exp $ */
+/* $NetBSD: kloader_machdep.c,v 1.6 2023/11/07 21:19:04 andvar Exp $ */
/*-
* Copyright (c) 2001, 2002, 2004 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kloader_machdep.c,v 1.5 2014/03/31 11:25:49 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kloader_machdep.c,v 1.6 2023/11/07 21:19:04 andvar Exp $");
#include "debug_kloader.h"
@@ -66,7 +66,7 @@ kloader_playstation2_jump(kloader_bootfu
}
void
-kloader_playstation2_reset()
+kloader_playstation2_reset(void)
{
((void (*)(void))0xbfc00000)();