llvm-project/lldb/test/Shell/Reproducer/Inputs/simple.c

11 lines
130 B
C

#include <stdio.h>
void foo() {
printf("testing\n");
}
int main (int argc, char const *argv[]) {
foo();
return 0;
}