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

Comparing ray/src/meta/syscalls.c (file contents):
Revision 1.4 by schorsch, Fri Aug 1 14:14:24 2003 UTC vs.
Revision 1.5 by greg, Fri Jun 9 15:25:49 2023 UTC

# Line 11 | Line 11 | static const char      RCSid[] = "$Id$";
11  
12  
13   FILE *
14 < efopen(fname, mode)             /* open a file, report errors */
15 <
16 < char  *fname, *mode;
17 <
14 > efopen(         /* open a file, report errors */
15 > const char  *fname,
16 > const char  *mode
17 > )
18   {
19 < register FILE  *fp;
19 > FILE  *fp;
20   FILE  *fopen();
21  
22   if ((fp = fopen(fname, mode)) == NULL)  {
# Line 30 | Line 30 | char  *fname, *mode;
30  
31  
32   FILE *
33 < mfopen(fname, mode)             /* open a program metafile */
34 <
35 < char  *fname;
36 < char  *mode;
37 <
33 > mfopen(         /* open a program metafile */
34 > const char  *fname,
35 > const char  *mode
36 > )
37   {
38      char  *mdir, stemp[MAXFNAME];
39      char  *getenv();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines