Fix underscores in Header Guards

This commit is contained in:
Pavel Odintsov 2015-05-14 18:21:26 +03:00
parent c40f5f2887
commit e80cb9d4d1
6 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
#ifndef _EXAMPLE_PLUGIN_H
#define _EXAMPLE_PLUGIN_H
#ifndef EXAMPLE_PLUGIN_H
#define EXAMPLE_PLUGIN_H
#include "../fastnetmon_types.h"

View File

@ -1,5 +1,5 @@
#ifndef _FAST_LIBRARY_H
#define _FAST_LIBRARY_H
#ifndef FAST_LIBRARY_H
#define FAST_LIBRARY_H
#include "fastnetmon_types.h"

View File

@ -1,5 +1,5 @@
#ifndef _PFRING_PACKET_PARSER_H
#define _PFRING_PACKET_PARSER_H
#ifndef PFRING_PACKET_PARSER_H
#define PFRING_PACKET_PARSER_H
#include <sys/types.h>
#include <netinet/in.h> // in6_addr

View File

@ -1,5 +1,5 @@
#ifndef _FASTNETMON_TYPES_H
#define _FASTNETMON_TYPES_H
#ifndef FASTNETMON_TYPES_H
#define FASTNETMON_TYPES_H
#include <utility> // std::pair
#include <stdint.h> // uint32_t

View File

@ -16,8 +16,8 @@ extern "C" {
* some other things it could be used as a standalone API.
*/
#ifndef _PATRICIA_H
#define _PATRICIA_H
#ifndef PATRICIA_H
#define PATRICIA_H
#define HAVE_IPV6
@ -153,7 +153,7 @@ do { \
} \
} while (0)
#endif /* _PATRICIA_H */
#endif /* PATRICIA_H */
#ifdef __cplusplus
}

View File

@ -1,5 +1,5 @@
#ifndef _NETFLOW_PLUGIN_H
#define _NETFLOW_PLUGIN_H
#ifndef NETFLOW_PLUGIN_H
#define NETFLOW_PLUGIN_H
/* netflow plugin header */