forked from espressif/esp-idf
fix(ulp): Add the missing extern "C" guard to ulp_lp_core_print.h
This commit adds the missing extern `C` guards the ulp_lp_core_print.h header file. Closes https://github.com/espressif/esp-idf/pull/14329
This commit is contained in:
@@ -5,6 +5,10 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "sdkconfig.h"
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -67,3 +71,7 @@ void lp_core_print_hex(int h);
|
|||||||
* @param d integer to be printed
|
* @param d integer to be printed
|
||||||
*/
|
*/
|
||||||
void lp_core_print_dec_two_digits(int d);
|
void lp_core_print_dec_two_digits(int d);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
Reference in New Issue
Block a user