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

Comparing ray/src/px/oki20.c (file contents):
Revision 2.8 by greg, Mon Aug 2 14:39:06 1993 UTC vs.
Revision 2.10 by schorsch, Thu Jun 5 19:29:34 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  oki20.c - program to dump pixel file to OkiMate 20 printer.
6   */
7  
8   #include  <stdio.h>
9 < #ifdef MSDOS
13 < #include  <fcntl.h>
14 < #endif
9 > #include  <time.h>
10  
11 + #include  "platform.h"
12   #include  "color.h"
13   #include  "resolu.h"
14  
# Line 35 | Line 31 | int  argc;
31   char  *argv[];
32   {
33          int  i, status = 0;
34 < #ifdef MSDOS
35 <        extern int  _fmode;
36 <        _fmode = O_BINARY;
41 <        setmode(fileno(stdin), O_BINARY);
42 <        setmode(fileno(stdout), O_BINARY);
43 < #endif
34 >        SET_DEFAULT_BINARY();
35 >        SET_FILE_BINARY(stdin);
36 >        SET_FILE_BINARY(stdout);
37          if (argc > 1 && !strcmp(argv[1], "-p")) {
38                  dofilter++;
39                  argv++; argc--;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines