From f45345b7723f09c94a829d90689d052c864f5b86 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 3 Oct 2017 06:30:17 +0200 Subject: global: use _WG prefix for include guards Suggested-by: Sultan Alsawaf --- src/netlink.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/netlink.h') diff --git a/src/netlink.h b/src/netlink.h index debf42c..9fe2c78 100644 --- a/src/netlink.h +++ b/src/netlink.h @@ -1,9 +1,9 @@ /* Copyright (C) 2015-2017 Jason A. Donenfeld . All Rights Reserved. */ -#ifndef NETLINK_H -#define NETLINK_H +#ifndef _WG_NETLINK_H +#define _WG_NETLINK_H int netlink_init(void); void netlink_uninit(void); -#endif +#endif /* _WG_NETLINK_H */ -- cgit v1.2.3-59-g8ed1b