--- ray/src/rt/rtrace.c 1990/01/19 00:00:26 1.8 +++ ray/src/rt/rtrace.c 1990/06/26 09:00:15 1.10 @@ -53,12 +53,12 @@ int ambincl = -1; /* include == 1, exclude == 0 */ static RAY thisray; /* for our convenience */ -extern int oputo(), oputd(), oputv(), oputl(), +static int oputo(), oputd(), oputv(), oputl(), oputp(), oputn(), oputs(), oputw(), oputm(); static int (*ray_out[10])(), (*every_out[10])(); -extern int puta(), putf(), putd(); +static int puta(), putf(), putd(); static int (*putreal)(); @@ -299,10 +299,7 @@ static oputl(r) /* print length */ register RAY *r; { - if (r->rot < FHUGE) - (*putreal)(r->rot); - else - (*putreal)(0.0); + (*putreal)(r->rt); }