--- ray/src/gen/mkillum.c 2003/06/26 00:58:09 2.14 +++ ray/src/gen/mkillum.c 2003/07/21 22:30:18 2.16 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: mkillum.c,v 2.14 2003/06/26 00:58:09 schorsch Exp $"; +static const char RCSid[] = "$Id: mkillum.c,v 2.16 2003/07/21 22:30:18 schorsch Exp $"; #endif /* * Make illum sources for optimizing rendering process @@ -7,11 +7,9 @@ static const char RCSid[] = "$Id: mkillum.c,v 2.14 200 #include #include -#include -#include "standard.h" -#include "platform.h" #include "mkillum.h" +#include "platform.h" /* default parameters */ #define SAMPDENS 48 /* points per projected steradian */ @@ -139,12 +137,13 @@ int status; int rtstat; rtstat = close_process(&(rt.pd)); - if (status == 0) + if (status == 0) { if (rtstat < 0) error(WARNING, "unknown return status from rtrace process"); else status = rtstat; + } exit(status); }