bifcl: Fix header include guards

This commit is contained in:
Jon Siwek 2020-02-10 12:00:31 -08:00 committed by Tim Wojtulewicz
parent c60bd14d56
commit 7009f1dda6
2 changed files with 3 additions and 4 deletions

View file

@ -1,5 +1,4 @@
#ifndef bif_arg_h #pragma once
#define bif_arg_h
#include <stdio.h> #include <stdio.h>
@ -47,5 +46,3 @@ protected:
const char* type_str; const char* type_str;
const char* attr_str; const char* attr_str;
}; };
#endif

View file

@ -2,6 +2,8 @@
// These functions are used by both Zeek and bifcl. // These functions are used by both Zeek and bifcl.
// //
#pragma once
#include <string> #include <string>
using namespace std; using namespace std;