Skip to content

Commit be84d3c

Browse files
committed
Stick to C style in header file
1 parent f2f5a0b commit be84d3c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

include/utility/mpt_utility.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#ifndef MPT_UTILITY_H
22
#define MPT_UTILITY_H
33

4-
#include <cstddef>
54
#include <secp256k1.h>
5+
#include <stddef.h>
66
#include <stdint.h>
7-
#include <vector>
87

98
#ifdef __cplusplus
109
extern "C" {

src/utility/mpt_utility.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
#include <openssl/sha.h>
55
#include <secp256k1_mpt.h>
66
#include <utility/mpt_utility.h>
7+
#include <stddef.h>
8+
#include <stdint.h>
9+
#include <vector>
10+
#include <secp256k1.h>
711

812
// Platform endianness support for serialization
913
#if defined(__APPLE__)

0 commit comments

Comments
 (0)