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

Comparing ray/src/common/fropen.c (file contents):
Revision 2.12 by greg, Mon Jun 30 18:18:22 2003 UTC vs.
Revision 2.16 by greg, Thu Dec 19 16:38:12 2013 UTC

# Line 4 | Line 4 | static const char      RCSid[] = "$Id$";
4   /*
5   * Find and open a Radiance library file.
6   *
7 < *  External symbols declared in standard.h
7 > *  External symbols declared in rtio.h
8   */
9  
10   #include "copyright.h"
11  
12   #include <stdio.h>
13  
14 + #include "rtio.h"
15   #include "paths.h"
16  
17  
18   FILE *
19 < frlibopen(fname)                /* find file and open for reading */
20 < register char  *fname;
19 > frlibopen(                      /* find file and open for reading */
20 >        char  *fname
21 > )
22   {
21        extern char  *getrlibpath();
23          FILE  *fp;
24          char  pname[PATH_MAX];
25 <        register char  *sp, *cp;
25 >        char  *sp, *cp;
26  
27          if (fname == NULL)
28                  return(NULL);
29  
30 <        if (ISDIRSEP(fname[0]) || fname[0] == '.')      /* absolute path */
30 >        if (ISABS(fname) || fname[0] == '.')    /* absolute path */
31                  return(fopen(fname, "r"));
32                                                  /* check search path */
33          sp = getrlibpath();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines