- or download this
extern int bar (int);
extern int baz (int);
- or download this
#define NVSIZE 100
int baz (int);
- or download this
#include "baz.h"
int baz (int in) {
return in + NVSIZE;
}
- or download this
use warnings;
...
EOC
foo(42);
- or download this
bar: 42
baz: 142
NVSIZE: 8