| 11 |
|
#include <signal.h> |
| 12 |
|
|
| 13 |
|
#include "platform.h" |
| 14 |
+ |
#include "rtprocess.h" /* getpid() */ |
| 15 |
|
#include "ray.h" |
| 16 |
|
#include "source.h" |
| 17 |
|
#include "ambient.h" |
| 49 |
|
extern char *tralist[]; /* list of modifers to trace (or no) */ |
| 50 |
|
extern int traincl; /* include == 1, exclude == 0 */ |
| 51 |
|
|
| 52 |
< |
void onsig(); |
| 53 |
< |
void sigdie(); |
| 54 |
< |
void printdefaults(); |
| 52 |
> |
void onsig(int); |
| 53 |
> |
void sigdie(int, char*); |
| 54 |
> |
void printdefaults(void); |
| 55 |
|
|
| 56 |
|
|
| 57 |
|
int |
| 417 |
|
|
| 418 |
|
|
| 419 |
|
void |
| 420 |
< |
printdefaults() /* print default values to stdout */ |
| 420 |
> |
printdefaults(void) /* print default values to stdout */ |
| 421 |
|
{ |
| 422 |
|
register char *cp; |
| 423 |
|
|