aboutsummaryrefslogtreecommitdiff
path: root/src/streams.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-09-20 11:21:33 +0100
committerfanquake <fanquake@gmail.com>2022-09-21 16:53:11 +0100
commitb95633121bf32587fb24d22e5f26ddffb51cd7f7 (patch)
tree189645ce7549459dd360be441e31fac166801376 /src/streams.h
parent4e15a288c3aa34700c511cd701cfc2238f48ba5b (diff)
downloadbitcoin-b95633121bf32587fb24d22e5f26ddffb51cd7f7.tar.xz
refactor: use <cstdio> over stdio.h
We currently use both. Consolidate on the former.
Diffstat (limited to 'src/streams.h')
-rw-r--r--src/streams.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/streams.h b/src/streams.h
index f14d347380..24778ab331 100644
--- a/src/streams.h
+++ b/src/streams.h
@@ -13,11 +13,11 @@
#include <algorithm>
#include <assert.h>
+#include <cstdio>
#include <ios>
#include <limits>
#include <optional>
#include <stdint.h>
-#include <stdio.h>
#include <string.h>
#include <string>
#include <utility>