d04337125e
Effectively just ignores any declarations as global scope is shared across files in PicoC anyway, so the ultimate definition should be enough.
10 lines
94 B
C
10 lines
94 B
C
#include "extern.h"
|
|
|
|
int a;
|
|
|
|
int main(void) {
|
|
a = 1;
|
|
decrement();
|
|
return a + b;
|
|
}
|