xref: /original-bsd/usr.bin/window/wwputc.c (revision c43e4352)
1 #ifndef lint
2 static	char *sccsid = "@(#)wwputc.c	2.1 83/07/30";
3 #endif
4 
5 #include "ww.h"
6 
7 wwputc(c, w)
8 char c;
9 struct ww *w;
10 {
11 	return wwwrite(w, &c, sizeof c);
12 }
13