K 10 svn:author V 3 dim K 8 svn:date V 27 2022-08-21T11:31:16.539705Z K 7 svn:log V 669 Adjust function definition in aim_machdep.c to avoid clang 15 warning With clang 15, the following -Werror warning is produced: sys/powerpc/aim/aim_machdep.c:750:14: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] cpu_sleep() ^ void This is because cpu_sleep() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 days (cherry picked from commit 06fce030e79ecce57365bc537e38ee0f25861d70) Git Hash: 3e55a45bb7f3381e55d4c7dd1ef7b90aa4feba8a Git Author: dim@FreeBSD.org END