Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1532 → Rev 1533

/uspace/trunk/tetris/input.c
89,7 → 89,7
{
struct timeval starttv, endtv, *s;
static ipc_call_t charcall;
int rc;
ipcarg_t rc;
 
/*
* Someday, select() will do this for us.
/uspace/trunk/tetris/screen.c
69,7 → 69,11
* putstr() is for unpadded strings (either as in termcap(5) or
* simply literal strings);
*/
#define putstr(s) puts(s)
static inline void putstr(char *s)
{
while (*s)
putchar(*(s++));
}
 
static int con_phone;