Ignore:
Timestamp:
2008-09-14T15:43:22Z (16 years ago)
Author:
Tim Post <echo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6279151
Parents:
211b0c13
Message:

Simplify entry types (and return values) for commands

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/builtins/cd/cd.c

    r211b0c13 r809813d  
    4343static char * cmdname = "cd";
    4444
    45 void * help_cmd_cd(unsigned int level)
     45void help_cmd_cd(unsigned int level)
    4646{
    4747        if (level == HELP_SHORT) {
     
    5454        }
    5555
    56         return CMD_VOID;
     56        return;
    5757}
    5858
    5959/* This is a very rudamentary 'cd' command. It is not 'link smart' (yet) */
    6060
    61 int * cmd_cd(char **argv, cliuser_t *usr)
     61int cmd_cd(char **argv, cliuser_t *usr)
    6262{
    6363        int argc, rc = 0;
Note: See TracChangeset for help on using the changeset viewer.