| 7 |
|
|
| 8 |
|
#include "copyright.h" |
| 9 |
|
|
| 10 |
+ |
#include <ctype.h> |
| 11 |
+ |
|
| 12 |
+ |
#include "rtprocess.h" |
| 13 |
|
#include "radogl.h" |
| 14 |
|
|
| 15 |
|
#ifndef NLIST2ALLOC |
| 21 |
|
static int nextlist, nlistleft = 0; |
| 22 |
|
|
| 23 |
|
|
| 24 |
< |
static void |
| 25 |
< |
initotypes() /* initialize ofun array */ |
| 24 |
> |
void |
| 25 |
> |
initotypes(void) /* initialize ofun array */ |
| 26 |
|
{ |
| 27 |
|
if (ofun[OBJ_SPHERE].funp == o_sphere) |
| 28 |
|
return; /* already done */ |
| 151 |
|
rgl_load(inpspec) /* convert scene description into OGL calls */ |
| 152 |
|
char *inpspec; |
| 153 |
|
{ |
| 151 |
– |
FILE *popen(); |
| 154 |
|
char *fgetline(); |
| 155 |
|
FILE *infp; |
| 156 |
|
char buf[1024]; |
| 184 |
|
} |
| 185 |
|
if (inpspec[0] == '!') |
| 186 |
|
pclose(infp); |
| 187 |
< |
else |
| 187 |
> |
else if (infp != stdin) |
| 188 |
|
fclose(infp); |
| 189 |
|
} |
| 190 |
|
|