roctracer
roctracer copied to clipboard
Avoid empty-argument lists in C function declarations
()
as a function argument list in C is equivalent to (...)
, i.e, in C
you get at most a warning, if it is called with too many arguments. Clarify
this situation by explicitly stating (void)
as argument list.