ANSI
[unix-history] / usr / src / usr.bin / window / wwputc.c
CommitLineData
60de5df9 1/*
46e9ea25
KB
2 * Copyright (c) 1983 Regents of the University of California.
3 * All rights reserved.
4 *
3dd3a9e5
KB
5 * This code is derived from software contributed to Berkeley by
6 * Edward Wang at The University of California, Berkeley.
7 *
87f529ec 8 * %sccs.include.redist.c%
60de5df9
EW
9 */
10
46e9ea25 11#ifndef lint
3dd3a9e5 12static char sccsid[] = "@(#)wwputc.c 3.8 (Berkeley) %G%";
46e9ea25
KB
13#endif /* not lint */
14
9c6399b1
EW
15#include "ww.h"
16
17wwputc(c, w)
4711df8b
EW
18char c;
19struct ww *w;
9c6399b1 20{
b1189050 21 (void) wwwrite(w, &c, sizeof c);
9c6399b1 22}