Merge branch 'bugfix/missing_extern_c' into 'master'

[test_utils]: added extern C decl to ccomp

See merge request espressif/esp-idf!13919
This commit is contained in:
Angus Gratton 2021-06-16 01:47:27 +00:00
commit e7f3099541

View File

@ -18,6 +18,10 @@
#include "esp_err.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Start the timer on the current core.
*
@ -52,3 +56,7 @@ int64_t ccomp_timer_stop(void);
* core.
*/
int64_t ccomp_timer_get_time(void);
#ifdef __cplusplus
}
#endif