9 lines
95 B
C
9 lines
95 B
C
#include "stub.h"
|
|
|
|
static void foo() { printf("foo\n"); }
|
|
|
|
int main() {
|
|
foo();
|
|
return 0;
|
|
}
|