thanks.
--
cinap
On 1 April 2015 at 02:34, wrote:
> theres my attempt at preventing the linker from doing so:
It's one of those cases where it's funny it hasn't been noticed before,
since the effects won't be confined to libdraw. Anyway, that change seems
ok,
although it's really a particular type of conflict (
Point
Pt(int x, int y)
{
int buf[1000]; /*
added for demonstration */
Point p;
buf[0] = x;
p.x = x;
p.y = y;
return p;
}
vc -S compiler output looks ok, but i dont quite understand why it
doesnt dire