K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T17:08:44.221524Z K 7 svn:log V 691 Adjust dtrace_getf_barrier() definition to avoid clang 15 warning With clang 15, the following -Werror warnings is produced: sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c:17019:20: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] dtrace_getf_barrier() ^ void This is because dtrace_getf_barrier() 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 bd0e3cc2e71079f54785b7a395faf3a66426936e) Git Hash: 5bdaac89aeeca37c305e1e2af202b2698078aeb7 Git Author: dim@FreeBSD.org END