K 10 svn:author V 7 git2svn K 8 svn:date V 27 2022-07-29T18:50:21.678400Z K 7 svn:log V 856 Adjust function definitions in sysv_msg.c to avoid clang 15 warnings With clang 15, the following -Werror warnings are produced: sys/kern/sysv_msg.c:213:8: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] msginit() ^ void sys/kern/sysv_msg.c:316:10: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] msgunload() ^ void This is because msginit() and msgunload() are declared with (void) argument lists, but defined with empty argument lists. Make the definitions match the declarations. MFC after: 3 days (cherry picked from commit 78cfed2de70d023acb452c06dbd1ffd8341f4608) Git Hash: 765faba637cd58031bc91113237db9e2845718f9 Git Author: dim@FreeBSD.org END