Muhammad Omair Javaid f827b4b657 [LLDB] Fix TestConvenienceVariables.test AArch64/Windows
This patch fixes TestConvenienceVariables.test for AArch64 Windows.
Clang/LLD was unable to find printf apparently available as a macro
definition in stdio.h.
2022-07-13 16:46:55 +05:00

7 lines
94 B
C++

#include<stdio.h>
int main(int argc, char **argv) {
printf("Hello World\n");
return 0;
}