Reply by arcanebusa November 6, 20032003-11-06
Hello,

I'm in the process of re-writing my application without the SDK, and
am getting a linker error:

Link Error : Undefined : "ARTDIVS32UZ"
Referenced from "FInterp" in main.c

Here's the offending code:

ushort Interp(int X1, int X2, int Y1, int Y2, int point)
{
return (Y1 + ((long)(point - X1)*(long)(Y2 - Y1))/(long)(X2-X1));
}

It seems the linker can't find the long divide routine, anybody have
any ideas?

Thanks,
Chad