- or download this
use strict;
use warnings;
...
foo();
__END__
- or download this
// gcc y.c
...
free(s);
}
void main(void){ foo(); }
- or download this
% a.out
'hello there'
my free called
- or download this
// gcc x.c
#define _GNU_SOURCE
...
free(s);
}
void main(void){ foo(); }