diff options
author | fanquake <fanquake@gmail.com> | 2022-03-07 11:51:11 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-03-07 11:51:11 +0000 |
commit | e4e9dd3a287f134356044f636e189da704de8ed4 (patch) | |
tree | 85e28e55fdbc215bef5d6713455133ce7d215a3e /contrib | |
parent | b9894a13083c6ad7085d735c9c514edf3c8e6471 (diff) |
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-x | contrib/devtools/test-symbol-check.py | 2 |
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() { |