From e32fa5bc6454813f8bb9e82d91accd7b426e33c5 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 2 Jul 2020 00:16:36 +0200 Subject: [PATCH] gluon-radv-filterd: add string.h and guard to mac.h - #pragma once include guard - include string.h to get memset and memcmp prototypes to fix respondd provider build warning --- package/gluon-radv-filterd/src/mac.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/gluon-radv-filterd/src/mac.h b/package/gluon-radv-filterd/src/mac.h index cc24d907..eece1105 100644 --- a/package/gluon-radv-filterd/src/mac.h +++ b/package/gluon-radv-filterd/src/mac.h @@ -1,4 +1,7 @@ +#pragma once + #include +#include #include #define F_MAC "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx"