aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-08-09 08:51:46 +0000
committerlloyd <[email protected]>2006-08-09 08:51:46 +0000
commit2c8945a11462697be599d5907960a3a80c708cd7 (patch)
treef61d1b26d901e0fdaf89295b9fa0bd2ea20b34c8 /checks
parente19c0b974a7cffee9400ab1c5eb20ae190bbfb65 (diff)
Add header guards
Diffstat (limited to 'checks')
-rw-r--r--checks/getopt.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/checks/getopt.h b/checks/getopt.h
index 5796f7ae7..132bf5482 100644
--- a/checks/getopt.h
+++ b/checks/getopt.h
@@ -1,4 +1,7 @@
+#ifndef BOTAN_CHECK_GETOPT_H__
+#define BOTAN_CHECK_GETOPT_H__
+
#include <string>
#include <vector>
#include <map>
@@ -36,3 +39,5 @@ class OptionParser
std::map<std::string, std::string> options;
std::vector<std::string> leftover;
};
+
+#endif