Join Nostr
2026-03-16 02:34:00 UTC
in reply to

pixx on Nostr: I've run into it before. I *think* it's essential that the missing symbol *not* be in ...

I've run into it before. I *think* it's essential that the missing symbol *not* be in the last function. This should work for main.c:

void foo(void);

void
bar(void)
{
foo();
}

void
main(void){
bar();
}