From c61bad460e079ee0ee31a4dc09708e015a47e087 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 29 Jan 2022 19:51:31 -0800 Subject: [PATCH] sockread: add missing header Needed for memset, memcpy, and strerror. Signed-off-by: Rosen Penev --- utils/sockread/Makefile | 2 +- utils/sockread/src/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/sockread/Makefile b/utils/sockread/Makefile index d3c15d468..52daf82b1 100644 --- a/utils/sockread/Makefile +++ b/utils/sockread/Makefile @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sockread PKG_VERSION:=1.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=CC0-1.0 include $(INCLUDE_DIR)/package.mk diff --git a/utils/sockread/src/main.c b/utils/sockread/src/main.c index 06c21def4..c685bce71 100644 --- a/utils/sockread/src/main.c +++ b/utils/sockread/src/main.c @@ -1,4 +1,4 @@ - +#include #include #include #include