Changeset 88944695 in mainline for uspace/app/bdsh/exec.c


Ignore:
Timestamp:
2008-08-28T08:32:06Z (16 years ago)
Author:
Tim Post <echo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a56f4b2
Parents:
69145dae
Message:

More house cleaning, don't expose beyond what's needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/exec.c

    r69145dae r88944695  
    4949char *found;
    5050
     51static char *find_command(char *);
     52static unsigned int try_access(const char *);
     53
    5154/* work-around for access() */
    52 unsigned int try_access(const char *f)
     55static unsigned int try_access(const char *f)
    5356{
    5457        int fd;
     
    6467/* Returns the full path of "cmd" if cmd is found, else just hand back
    6568 * cmd as it was presented */
    66 char *find_command(char *cmd)
     69static char *find_command(char *cmd)
    6770{
    6871        char *path_tok;
Note: See TracChangeset for help on using the changeset viewer.