Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1532 → Rev 1533

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