David Gonzalez Martin dfcda18a70 Improve clang integration
LLVM can now be compiled with nat
2024-03-27 16:51:20 -06:00

8 lines
92 B
C

extern int foo();
#include <assert.h>
int main()
{
assert(foo() == 42);
return 0;
}