Rev 3304 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3265 | post | 1 | #ifndef EXEC_H |
2 | #define EXEC_H |
||
3 | |||
4 | extern char *find_command(char *); |
||
5 | #ifdef HELENOS |
||
6 | #include <task.h> |
||
7 | extern task_id_t try_exec(char *, char **); |
||
8 | #else |
||
9 | extern int try_exec(char *, char **); |
||
10 | #endif |
||
11 | extern unsigned int try_access(const char *); |
||
12 | |||
13 | #endif |