Skip to content

Commit b60a138

Browse files
author
Owen L - SFE
committed
Add 'extern "C"` guards for includes
1 parent bd8d3d0 commit b60a138

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

zzz_temporary-ble-build-out/zzz_temporary-ble-build-out.ino

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#include <stdint.h>
22
#include <stdbool.h>
33

4+
#ifdef __cplusplus
5+
extern "C"
6+
{
7+
#endif
8+
49
#include "wsf_types.h"
510
#include "wsf_trace.h"
611
#include "wsf_buf.h"
@@ -27,6 +32,9 @@
2732

2833
#include "wsf_msg.h"
2934

35+
#ifdef __cplusplus
36+
}
37+
#endif
3038

3139
//*****************************************************************************
3240
//

0 commit comments

Comments
 (0)