Update all header guards.
[tinc] / src / subnet.h
index 9fd95b6..5bd5ff0 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef TINC_SUBNET_H
+#define TINC_SUBNET_H
+
 /*
     subnet.h -- header for subnet.c
     Copyright (C) 2000-2012 Guus Sliepen <guus@tinc-vpn.org>,
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef __TINC_SUBNET_H__
-#define __TINC_SUBNET_H__
-
 #include "net.h"
+#include "node.h"
 
 typedef enum subnet_type_t {
        SUBNET_MAC = 0,
@@ -44,8 +45,6 @@ typedef struct subnet_ipv6_t {
        int prefixlength;
 } subnet_ipv6_t;
 
-#include "node.h"
-
 typedef struct subnet_t {
        struct node_t *owner;   /* the owner of this subnet */
 
@@ -89,4 +88,4 @@ extern subnet_t *lookup_subnet_ipv6(const ipv6_t *);
 extern bool dump_subnets(struct connection_t *);
 extern void subnet_cache_flush(void);
 
-#endif /* __TINC_SUBNET_H__ */
+#endif