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/messages.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/messages.h') diff --git a/src/messages.h b/src/messages.h index 19488a6..0937942 100644 --- a/src/messages.h +++ b/src/messages.h @@ -4,8 +4,8 @@ * See doc/protocol.md for more info */ -#ifndef MESSAGES_H -#define MESSAGES_H +#ifndef _WG_MESSAGES_H +#define _WG_MESSAGES_H #include "crypto/curve25519.h" #include "crypto/chacha20poly1305.h" @@ -125,4 +125,4 @@ enum { HANDSHAKE_DSCP = 0b10001000 /* AF41, plus 00 ECN */ }; -#endif +#endif /* _WG_MESSAGES_H */ -- cgit v1.2.3-59-g8ed1b