| # | Line 26 | Line 26 | register char *fname; | |
|---|---|---|
| 26 | if (fname == NULL) | |
| 27 | return(NULL); | |
| 28 | ||
| 29 | < | if (ISDIRSEP(fname[0]) || fname[0] == '.') /* absolute path */ |
| 29 | > | if (ISABS(fname) || fname[0] == '.') /* absolute path */ |
| 30 | return(fopen(fname, "r")); | |
| 31 | /* check search path */ | |
| 32 | sp = getrlibpath(); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |