Luke Drummond b55c52c047 Revert "Renormalize line endings whitespace only after dccebddb3b80"
This reverts commit 9d98acb196a40fee5229afeb08f95fd36d41c10a.
2024-10-18 21:16:50 +01:00

17 lines
283 B
C++

#include <stdio.h>
extern "C" int a_function();
extern "C" int c_function();
extern "C" int b_function();
extern "C" int d_function();
int main() {
a_function();
b_function();
c_function();
d_function();
puts("running"); // breakpoint here
return 0;
}