diff options
| author | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
|---|---|---|
| committer | svn2git <svn2git@FreeBSD.org> | 1994-05-01 08:00:00 +0000 |
| commit | a16f65c7d117419bd266c28a1901ef129a337569 (patch) | |
| tree | 2626602f66dc3551e7a7c7bc9ad763c3bc7ab40a /lib/libI77/wsle.c | |
| parent | 8503f4f13f77abf7adc8f7e329c6f9c1d52b6a20 (diff) | |
Diffstat (limited to 'lib/libI77/wsle.c')
| -rw-r--r-- | lib/libI77/wsle.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/libI77/wsle.c b/lib/libI77/wsle.c new file mode 100644 index 000000000000..470191be0145 --- /dev/null +++ b/lib/libI77/wsle.c @@ -0,0 +1,36 @@ +#include "f2c.h" +#include "fio.h" +#include "fmt.h" +#include "lio.h" + +#ifdef KR_headers +integer s_wsle(a) cilist *a; +#else +integer s_wsle(cilist *a) +#endif +{ + int n; + if(!f__init) f_init(); + if(n=c_le(a)) return(n); + f__reading=0; + f__external=1; + f__formatted=1; + f__putn = t_putc; + f__lioproc = l_write; + L_len = LINE; + f__donewrec = x_wSL; + if(f__curunit->uwrt != 1 && f__nowwriting(f__curunit)) + err(a->cierr, errno, "list output start"); + return(0); + } + +integer e_wsle(Void) +{ + t_putc('\n'); + f__recpos=0; + if (f__cf == stdout) + fflush(stdout); + else if (f__cf == stderr) + fflush(stderr); + return(0); + } |
