
This patch fixes TestConvenienceVariables.test for AArch64 Windows. Clang/LLD was unable to find printf apparently available as a macro definition in stdio.h.
7 lines
94 B
C++
7 lines
94 B
C++
#include<stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
printf("Hello World\n");
|
|
return 0;
|
|
}
|