Subversion Repositories HelenOS-historic

Rev

Rev 1532 | Rev 1551 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1532 Rev 1533
Line 67... Line 67...
67
 
67
 
68
/*
68
/*
69
 * putstr() is for unpadded strings (either as in termcap(5) or
69
 * putstr() is for unpadded strings (either as in termcap(5) or
70
 * simply literal strings);
70
 * simply literal strings);
71
 */
71
 */
72
#define putstr(s)   puts(s)
72
static inline void putstr(char *s)
-
 
73
{
-
 
74
    while (*s)
-
 
75
        putchar(*(s++));
-
 
76
}
73
 
77
 
74
static int con_phone;
78
static int con_phone;
75
 
79
 
76
 
80
 
77
 
81