Skip to content

Commit 28c9617

Browse files
committed
Update core_esp8266_phy.c
add #include <string.h> to fix warning: incompatible implicit declaration of built-in function 'memcpy'
1 parent 87c59b1 commit 28c9617

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cores/esp8266/core_esp8266_phy.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
#include <stdint.h>
2424
#include <stddef.h>
2525
#include <stdbool.h>
26-
27-
#include "c_types.h"
26+
#include <string.h>
27+
#include "c_types.h"
2828

2929
static const uint8_t ICACHE_FLASH_ATTR phy_init_data[128] =
3030
{

0 commit comments

Comments
 (0)