Subversion Repositories HelenOS

Rev

Rev 3346 | Rev 3767 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3346 Rev 3366
Line 44... Line 44...
44
extern volatile unsigned int cli_interactive;
44
extern volatile unsigned int cli_interactive;
45
 
45
 
46
/* More than a macro than anything */
46
/* More than a macro than anything */
47
void cli_restricted(char *cmd)
47
void cli_restricted(char *cmd)
48
{
48
{
49
    cli_verbose("%s is not available in %s mode\n", cmd,
49
    printf("%s is not available in %s mode\n", cmd,
50
        cli_interactive ? "interactive" : "non-interactive");
50
        cli_interactive ? "interactive" : "non-interactive");
51
 
51
 
52
    return;
52
    return;
53
}
53
}
54
 
54