Changeset b510d52 in mainline for uspace/app/bdsh/cmds/modules/rm/rm.c


Ignore:
Timestamp:
2008-08-25T05:38:01Z (16 years ago)
Author:
Tim Post <echo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e2ea8d7e
Parents:
74965d2
Message:

Fix command description display, only command entry points need to be exposed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/rm/rm.c

    r74965d2 rb510d52  
    5858};
    5959
    60 unsigned int rm_start(rm_job_t *rm)
     60static unsigned int rm_start(rm_job_t *rm)
    6161{
    6262        rm->recursive = 0;
     
    8686}
    8787
    88 void rm_end(rm_job_t *rm)
     88static void rm_end(rm_job_t *rm)
    8989{
    9090        if (NULL != rm->nwd)
     
    100100}
    101101
    102 unsigned int rm_recursive(const char *path)
     102static unsigned int rm_recursive(const char *path)
    103103{
    104104        int rc;
     
    115115}
    116116
    117 unsigned int rm_single(const char *path)
     117static unsigned int rm_single(const char *path)
    118118{
    119119        if (unlink(path)) {
     
    124124}
    125125
    126 unsigned int rm_scope(const char *path)
     126static unsigned int rm_scope(const char *path)
    127127{
    128128        int fd;
Note: See TracChangeset for help on using the changeset viewer.