Remove unnecessary extern C declarations from programs/ and contrib/

This commit is contained in:
Victor Zhang
2024-12-19 16:20:23 -08:00
parent d0d5ce4c00
commit c727d5cd67
9 changed files with 8 additions and 58 deletions
-10
View File
@@ -21,11 +21,6 @@
/* === Dependencies === */
#include <stddef.h> /* size_t */
#if defined (__cplusplus)
extern "C" {
#endif
/* ==== Benchmark any function, iterated on a set of blocks ==== */
/* BMK_runTime_t: valid result return type */
@@ -175,9 +170,4 @@ typedef union {
} BMK_timedFnState_shell;
BMK_timedFnState_t* BMK_initStatic_timedFnState(void* buffer, size_t size, unsigned total_ms, unsigned run_ms);
#endif /* BENCH_FN_H_23876 */
#if defined (__cplusplus)
}
#endif