2024-04-27 10:43:59 -06:00

8 lines
92 B
C

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