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/noise.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/noise.h') diff --git a/src/noise.h b/src/noise.h index f6c68ea..f696c57 100644 --- a/src/noise.h +++ b/src/noise.h @@ -4,8 +4,8 @@ * See doc/protocol.md and https://github.com/trevp/noise/blob/master/noise.md for more info */ -#ifndef NOISE_H -#define NOISE_H +#ifndef _WG_NOISE_H +#define _WG_NOISE_H #include "messages.h" #include "hashtables.h" @@ -119,4 +119,4 @@ struct wireguard_peer *noise_handshake_consume_response(struct message_handshake bool noise_handshake_begin_session(struct noise_handshake *handshake, struct noise_keypairs *keypairs); -#endif +#endif /* _WG_NOISE_H */ -- cgit v1.2.3-59-g8ed1b