diff options
author | fanquake <fanquake@gmail.com> | 2022-09-20 11:26:01 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-09-21 16:53:18 +0100 |
commit | 55aad5f3a957296776cfd8d7a4a251361355b8e8 (patch) | |
tree | 9eea637cdfe4fe6742200414c5c183abfbc08dde /build_msvc | |
parent | b95633121bf32587fb24d22e5f26ddffb51cd7f7 (diff) |
build: remove stdio.h from header checks
We already use a mix of <cstdio> and stdio.h unconditionally throughout
the codebase.
Us checking this header also duplicates work already done by autotools.
Currently stdio.h is checked for 3 times during a ./configure run, after
this change, at least it's only twice.
Diffstat (limited to 'build_msvc')
-rw-r--r-- | build_msvc/bitcoin_config.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/build_msvc/bitcoin_config.h.in b/build_msvc/bitcoin_config.h.in index dad44e6228..6cdaf4b2b1 100644 --- a/build_msvc/bitcoin_config.h.in +++ b/build_msvc/bitcoin_config.h.in @@ -146,9 +146,6 @@ /* Define to 1 if you have the <stdint.h> header file. */ #define HAVE_STDINT_H 1 -/* Define to 1 if you have the <stdio.h> header file. */ -#define HAVE_STDIO_H 1 - /* Define to 1 if you have the <stdlib.h> header file. */ #define HAVE_STDLIB_H 1 |