| 9 |
|
*/ |
| 10 |
|
|
| 11 |
|
#include <stdio.h> |
| 12 |
< |
|
| 12 |
> |
#include <math.h> |
| 13 |
|
#include "color.h" |
| 14 |
|
#include "resolu.h" |
| 15 |
|
|
| 16 |
+ |
#ifdef MSDOS |
| 17 |
+ |
#include <fcntl.h> |
| 18 |
+ |
#endif |
| 19 |
+ |
|
| 20 |
+ |
extern char *malloc(); |
| 21 |
+ |
|
| 22 |
|
int bradj = 0; /* brightness adjustment */ |
| 23 |
|
|
| 24 |
|
int doflat = 1; /* produce flat file */ |
| 31 |
|
char *argv[]; |
| 32 |
|
{ |
| 33 |
|
int i; |
| 34 |
< |
|
| 34 |
> |
#ifdef MSDOS |
| 35 |
> |
extern int _fmode; |
| 36 |
> |
_fmode = O_BINARY; |
| 37 |
> |
setmode(fileno(stdin), O_BINARY); |
| 38 |
> |
setmode(fileno(stdout), O_BINARY); |
| 39 |
> |
#endif |
| 40 |
|
progname = argv[0]; |
| 41 |
|
|
| 42 |
|
for (i = 1; i < argc; i++) |
| 90 |
|
|
| 91 |
|
transfer() /* transfer Radiance picture */ |
| 92 |
|
{ |
| 82 |
– |
extern double pow(); |
| 93 |
|
int order; |
| 94 |
< |
int xmax, ymax; |
| 94 |
> |
int xmax, ymax; |
| 95 |
|
COLR *scanin; |
| 96 |
|
register int x; |
| 97 |
|
int y; |