Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 548 → Rev 544

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