Skip to content

Commit e4e9dd3

Browse files
committed
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); ```
1 parent b9894a1 commit e4e9dd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/devtools/test-symbol-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def test_PE(self):
187187
executable = 'test3.exe'
188188
with open(source, 'w', encoding="utf8") as f:
189189
f.write('''
190-
#include <windows.h>
190+
#include <combaseapi.h>
191191
192192
int main()
193193
{

0 commit comments

Comments
 (0)