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/modules/quit/quit.c

    r211b0c13 r809813d  
    4040extern const char *progname;
    4141
    42 void * help_cmd_quit(unsigned int level)
     42void help_cmd_quit(unsigned int level)
    4343{
    4444        printf("Type `%s' to exit %s\n", cmdname, progname);
    45         return CMD_VOID;
     45        return;
    4646}
    4747
    4848/* Quits the program and returns the status of whatever command
    4949 * came before invoking 'quit' */
    50 int * cmd_quit(char *argv[])
     50int cmd_quit(char *argv[])
    5151{
    5252        /* Inform that we're outta here */
Note: See TracChangeset for help on using the changeset viewer.