Add define for Kirk Smith's USR Courier driver. Change default baud
[unix-history] / usr / src / usr.bin / window / wwputc.c
index da39cba..b70d86c 100644 (file)
@@ -1,12 +1,18 @@
 #ifndef lint
 #ifndef lint
-static char *sccsid = "@(#)wwputc.c    2.1 83/07/30";
+static char sccsid[] = "@(#)wwputc.c   3.4 %G%";
 #endif
 
 #endif
 
+/*
+ * Copyright (c) 1983 Regents of the University of California,
+ * All rights reserved.  Redistribution permitted subject to
+ * the terms of the Berkeley Software License Agreement.
+ */
+
 #include "ww.h"
 
 wwputc(c, w)
 char c;
 struct ww *w;
 {
 #include "ww.h"
 
 wwputc(c, w)
 char c;
 struct ww *w;
 {
-       return wwwrite(w, &c, sizeof c);
+       (void) wwwrite(w, &c, sizeof c);
 }
 }