| 415 |
|
#include "platform.h" |
| 416 |
|
#include "muc_randvar.h" |
| 417 |
|
|
| 418 |
– |
char *progname; |
| 419 |
– |
|
| 418 |
|
/* subroutine to add a pixel to a glare source */ |
| 419 |
|
void add_pixel_to_gs(pict * p, int x, int y, int gsn) |
| 420 |
|
{ |
| 1557 |
|
char** temp_image_name; |
| 1558 |
|
int *x_temp_img, *y_temp_img; |
| 1559 |
|
double *scale_image_scans; |
| 1560 |
+ |
int *new_gs_number = NULL; |
| 1561 |
|
VIEW userview = STDVIEW; |
| 1562 |
|
int gotuserview = 0; |
| 1563 |
|
|
| 3078 |
|
|
| 3079 |
|
} |
| 3080 |
|
|
| 3081 |
< |
int new_gs_number[igs+1]; |
| 3081 |
> |
new_gs_number = (int *)malloc(sizeof(int)*(igs+1)); |
| 3082 |
|
|
| 3083 |
|
i = 0; |
| 3084 |
|
for (x = 0; x <= igs; x++) { |