aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-03-07 11:51:11 +0000
committerfanquake <fanquake@gmail.com>2022-03-07 11:51:11 +0000
commite4e9dd3a287f134356044f636e189da704de8ed4 (patch)
tree85e28e55fdbc215bef5d6713455133ce7d215a3e /contrib
parentb9894a13083c6ad7085d735c9c514edf3c8e6471 (diff)
downloadbitcoin-e4e9dd3a287f134356044f636e189da704de8ed4.tar.xz
contrib: fix implicit function decleration in win symbol check
```bash test3.c: In function 'main': test3.c:6:21: warning: implicit declaration of function 'CoFreeUnusedLibrariesEx' [-Wimplicit-function-declaration] 6 | CoFreeUnusedLibrariesEx(0,0); ```
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/devtools/test-symbol-check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/test-symbol-check.py b/contrib/devtools/test-symbol-check.py
index e1a2ebc491..b4c112b266 100755
--- a/contrib/devtools/test-symbol-check.py
+++ b/contrib/devtools/test-symbol-check.py
@@ -187,7 +187,7 @@ class TestSymbolChecks(unittest.TestCase):
executable = 'test3.exe'
with open(source, 'w', encoding="utf8") as f:
f.write('''
- #include <windows.h>
+ #include <combaseapi.h>
int main()
{