Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1533 → Rev 1532

/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;