fix "printf("%4.1f\n", (double)0.0);"
[unix-history] / usr / src / lib / libplot / plot / putsi.c
CommitLineData
fb5f17ce
SL
1#ifndef lint
2static char sccsid[] = "@(#)putsi.c 4.1 (Berkeley) %G%";
3#endif
4
5#include <stdio.h>
6putsi(a){
7 putc((char)a,stdout);
8 putc((char)(a>>8),stdout);
9}