new copyright notice
[unix-history] / usr / src / usr.bin / window / wwputc.c
/*
* Copyright (c) 1983 Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*/
#ifndef lint
static char sccsid[] = "@(#)wwputc.c 3.7 (Berkeley) %G%";
#endif /* not lint */
#include "ww.h"
wwputc(c, w)
char c;
struct ww *w;
{
(void) wwwrite(w, &c, sizeof c);
}