--- ray/src/common/linregr.h 1991/11/12 16:55:45 2.1 +++ ray/src/common/linregr.h 1992/10/02 15:56:12 2.2 @@ -15,8 +15,6 @@ typedef struct { double slope, intercept, correlation; } LRLIN; -extern double sqrt(); - #define lrpoint(x,y,l) ((l)->xs+=(x),(l)->ys+=(y),(l)->xxs+=(x)*(x), \ (l)->yys+=(y)*(y),(l)->xys+=(x)*(y),++(l)->n)