From 83e31800dcec31c404da0879441cdb2d306264b3 Mon Sep 17 00:00:00 2001 From: Adam Lamar Date: Mon, 14 Mar 2016 11:23:12 -0600 Subject: [PATCH] Add header guard to nfxstat --- bin/nfxstat.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/nfxstat.h b/bin/nfxstat.h index 611542e..b5bd09b 100644 --- a/bin/nfxstat.h +++ b/bin/nfxstat.h @@ -35,6 +35,8 @@ * */ +#ifndef _NFXSTAT_H +#define _NFXSTAT_H 1 typedef struct port_histogram_s { uint32_t count; @@ -79,4 +81,4 @@ void ResetPortHistogram(flow_port_histogram_t *port_histogram); void ResetBppHistogram(flow_bpp_histogram_t *bpp_histogram); - +#endif // _NFXSTAT_H