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

Comparing ray/src/px/paintjet.c (file contents):
Revision 2.2 by greg, Mon Dec 23 22:35:34 1991 UTC vs.
Revision 2.3 by greg, Mon Sep 21 12:13:43 1992 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1992 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 11 | Line 11 | static char SCCSid[] = "$SunId$ LBL";
11   */
12  
13   #include  <stdio.h>
14 + #ifdef MSDOS
15 + #include  <fcntl.h>
16 + #endif
17  
18   #include  "color.h"
19   #include  "resolu.h"
20  
21 < #define  NCOLS          1440            /* 8" at 180 dpi */
21 > #define  NCOLS          1440            /* 8" at 180 dpi */
22  
23  
24   main(argc, argv)
# Line 23 | Line 26 | int  argc;
26   char  *argv[];
27   {
28          int  i, status = 0;
29 <        
29 > #ifdef MSDOS
30 >        extern int  _fmode;
31 >        _fmode = O_BINARY;
32 >        setmode(fileno(stdin), O_BINARY);
33 >        setmode(fileno(stdout), O_BINARY);
34 > #endif
35          if (argc < 2)
36                  status = printp(NULL) == -1;
37          else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines