Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 547 → Rev 548

/kernel/trunk/generic/src/console/kconsole.c
425,11 → 425,17
return 1;
}
 
/** Print detailed description of 'describe' command. */
void desc_help(void)
{
printf("Syntax: describe command_name\n");
}
 
/** Halt the kernel.
*
* @param argv Argument vector.
* @param argv Argument vector (ignored).
*
* @return 0 on failure, 1 on success.
* @return 0 on failure, 1 on success (never returns).
*/
int cmd_halt(cmd_arg_t *argv)
{
436,9 → 442,3
halt();
return 1;
}
 
/** Print detailed description of 'describe' command. */
void desc_help(void)
{
printf("Syntax: describe command_name\n");
}