Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1533 → Rev 1532

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