read on closed socketpair returns eof
[unix-history] / usr / src / usr.bin / window / wwputs.c
#ifndef lint
static char sccsid[] = "@(#)wwputs.c 3.3 %G%";
#endif
#include "ww.h"
wwputs(s, w)
register char *s;
struct ww *w;
{
register char *p = s;
while (*p++)
;
(void) wwwrite(w, s, p - s - 1);
}