Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9207 turbocat 1
#include "shell_api.h"
2
 
3
char shell_getc()
4
{
5
    __shell_init();
6
    *__shell_shm = SHELL_GETC;
7
    __SHELL_WAIT();
8
    return *(__shell_shm+1);
9
}