5 lines
74 B
C
5 lines
74 B
C
extern int bar(void);
|
|
|
|
int main(void) {
|
|
return (bar() == 42) ? 0 : 1;
|
|
}
|