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:
andylinpersonal
2024-08-08 03:26:55 +08:00
committed by BOT
parent f477682938
commit 0dbb6d94ec

View File

@@ -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