9 lines
91 B
C
9 lines
91 B
C
|
std_err(s)
|
||
|
char *s;
|
||
|
{
|
||
|
char *p = s;
|
||
|
|
||
|
while(*p != 0) p++;
|
||
|
write(2, s, (int)(p - s));
|
||
|
}
|