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 Sudeep Mohanty
parent e70b08fb14
commit e2fca9afcc

View File

@ -3,6 +3,11 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Print from the LP core
@ -15,3 +20,7 @@
*
*/
void lp_core_printf(const char* format, ...);
#ifdef __cplusplus
}
#endif