From d4598cc93017e4d7e71a6f854d389dcf6749e8df Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Fri, 28 Apr 2017 15:41:24 +0200 Subject: Get rid of some warnings regarding header guards --- ot_rijndael.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ot_rijndael.h') diff --git a/ot_rijndael.h b/ot_rijndael.h index 7f57b3f..54725dc 100644 --- a/ot_rijndael.h +++ b/ot_rijndael.h @@ -9,12 +9,14 @@ $id$ */ -#ifndef __OT_RIJNDAEL_H__ -#define __OT_RIJNDAEL_H__ +#ifndef OT_RIJNDAEL_H__ +#define OT_RIJNDAEL_H__ #include int rijndaelKeySetupEnc128(uint32_t rk[44], const uint8_t cipherKey[] ); void rijndaelEncrypt128(const uint32_t rk[44], const uint8_t pt[16], uint8_t ct[16]); +extern const char *g_version_rijndael_c; + #endif -- cgit v1.2.3