Преглед изворни кода

FD_ZERO: Fix a compilation warning

Definition of memset is not found if string.h is not included anywhere

Signed-off-by: Piyush Shah <piyush@espressif.com>
Piyush Shah пре 8 година
родитељ
комит
6dbb040890
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      components/lwip/include/lwip/lwip/sockets.h

+ 1 - 0
components/lwip/include/lwip/lwip/sockets.h

@@ -39,6 +39,7 @@
 #if LWIP_SOCKET /* don't build if not configured for use in lwipopts.h */
 
 #include <stddef.h> /* for size_t */
+#include <string.h> /* for FD_ZERO */
 
 #include "lwip/ip_addr.h"
 #include "lwip/err.h"