aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/des
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-20 02:53:08 -0400
committerJack Lloyd <[email protected]>2017-09-20 02:53:08 -0400
commit8731d4920fa8b17374a442d62c2d8c1c6d34967a (patch)
tree0a0e98cf0c50e502397d920d8d4aa66f0036ce90 /src/lib/block/des
parentf7927e4081f1029e0b9c735cfff12ab1fc5f05b8 (diff)
Change header guard format to BOTAN_FOO_H_
ISO C++ reserves names with double underscores in them Closes #512
Diffstat (limited to 'src/lib/block/des')
-rw-r--r--src/lib/block/des/des.h4
-rw-r--r--src/lib/block/des/desx.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/block/des/des.h b/src/lib/block/des/des.h
index 4d17f0bed..bdedeff64 100644
--- a/src/lib/block/des/des.h
+++ b/src/lib/block/des/des.h
@@ -5,8 +5,8 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#ifndef BOTAN_DES_H__
-#define BOTAN_DES_H__
+#ifndef BOTAN_DES_H_
+#define BOTAN_DES_H_
#include <botan/block_cipher.h>
diff --git a/src/lib/block/des/desx.h b/src/lib/block/des/desx.h
index 6f525b6ef..fa9a99663 100644
--- a/src/lib/block/des/desx.h
+++ b/src/lib/block/des/desx.h
@@ -5,8 +5,8 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#ifndef BOTAN_DESX_H__
-#define BOTAN_DESX_H__
+#ifndef BOTAN_DESX_H_
+#define BOTAN_DESX_H_
#include <botan/des.h>