8 lines
92 B
C
8 lines
92 B
C
extern int foo();
|
|
#include <assert.h>
|
|
int main()
|
|
{
|
|
assert(foo() == 42);
|
|
return 0;
|
|
}
|