Rev 3403 | Rev 3535 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3403 | Rev 3474 | ||
|---|---|---|---|
| Line 44... | Line 44... | ||
| 44 | #include "util.h" |
44 | #include "util.h" |
| 45 | #include "exec.h" |
45 | #include "exec.h" |
| 46 | #include "errors.h" |
46 | #include "errors.h" |
| 47 | 47 | ||
| 48 | /* FIXME: Just have find_command() return an allocated string */ |
48 | /* FIXME: Just have find_command() return an allocated string */ |
| 49 | char *found; |
49 | static char *found; |
| 50 | 50 | ||
| 51 | static char *find_command(char *); |
51 | static char *find_command(char *); |
| 52 | static unsigned int try_access(const char *); |
52 | static int try_access(const char *); |
| 53 | 53 | ||
| 54 | /* work-around for access() */ |
54 | /* work-around for access() */ |
| 55 | static unsigned int try_access(const char *f) |
55 | static int try_access(const char *f) |
| 56 | { |
56 | { |
| 57 | int fd; |
57 | int fd; |
| 58 | 58 | ||
| 59 | fd = open(f, O_RDONLY); |
59 | fd = open(f, O_RDONLY); |
| 60 | if (fd > -1) { |
60 | if (fd > -1) { |