xref: /original-bsd/usr.bin/window/wwputc.c (revision fd1dcdc9)
1 #ifndef lint
2 static char sccsid[] = "@(#)wwputc.c	3.3 05/23/84";
3 #endif
4 
5 #include "ww.h"
6 
7 wwputc(c, w)
8 char c;
9 struct ww *w;
10 {
11 	(void) wwwrite(w, &c, sizeof c);
12 }
13