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

(cherry picked from commit e32fa5bc64)
This commit is contained in:
Matthias Schiffer 2020-07-02 00:16:36 +02:00 committed by David Bauer
parent ce6caa1ac7
commit d3613ac5df
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,7 @@
#pragma once
#include <stdint.h>
#include <string.h>
#include <linux/if_ether.h>
#define F_MAC "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx"