summaryrefslogtreecommitdiff
path: root/mesh/crypto.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2017-08-21 18:43:31 +0200
committerMarcel Holtmann <marcel@holtmann.org>2017-08-21 18:43:31 +0200
commitde6c9e2cf05d7ecc4f11f33c5a2b5a9da33edf5a (patch)
treec02385a659b262d7a82dee01d4ab4803573d64e0 /mesh/crypto.h
parent0da516115403d80534b37c61cc1bfdd731d14059 (diff)
downloadbluez-de6c9e2cf05d7ecc4f11f33c5a2b5a9da33edf5a.tar.gz
mesh: Remove circular include protection guards
Diffstat (limited to 'mesh/crypto.h')
-rw-r--r--mesh/crypto.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/mesh/crypto.h b/mesh/crypto.h
index 98bc06586..e8f16f35d 100644
--- a/mesh/crypto.h
+++ b/mesh/crypto.h
@@ -21,13 +21,6 @@
*
*/
-#ifndef __MESH_CRYPTO_H
-#define __MESH_CRYPTO_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#include <stdbool.h>
#include <stdint.h>
@@ -125,9 +118,3 @@ bool mesh_crypto_aes_cmac(const uint8_t key[16], const uint8_t *msg,
size_t msg_len, uint8_t res[16]);
bool mesh_get_random_bytes(void *buf, size_t num_bytes);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif