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