ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/ra_rgbe.c
(Generate patch)

Comparing ray/src/px/ra_rgbe.c (file contents):
Revision 2.2 by greg, Fri Jan 3 22:58:08 1992 UTC vs.
Revision 2.4 by greg, Fri Oct 2 16:26:39 1992 UTC

# Line 9 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
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 */
# Line 25 | Line 31 | int  argc;
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++)
# Line 79 | Line 90 | char  *err;
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;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines