don't throw away float <-> double conversions for FORTRAN.
[unix-history] / usr / src / old / lib2648 / outstr.c
CommitLineData
58b7dad3
RC
1/* outstr.c 4.1 83/03/09 */
2/*
3 * Low level output routines
4 */
5
6#include "2648.h"
7
8outstr(str)
9char *str;
10{
11 while (*str)
12 outchar(*str++);
13}