ROCm / rocprofiler

ROC profiler library. Profiling with perf-counters and derived metrics.
https://rocm.docs.amd.com/projects/rocprofiler/en/latest/
Other
119 stars 45 forks source link

Avoid empty-argument lists in C function declarations #39

Closed bertwesarg closed 3 years ago

bertwesarg commented 3 years ago

() 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.