diff options
| author | wkj <devnull@localhost> | 2004-05-16 07:55:57 +0000 |
|---|---|---|
| committer | wkj <devnull@localhost> | 2004-05-16 07:55:57 +0000 |
| commit | c5561c23cf394806cbf6d70a96f2dc0253f93745 (patch) | |
| tree | f4a5b99f88454917a5bada0f2a97d1505051968c /src/cmd/tbl/t9.c | |
| parent | b855148c9b6d28fedfd083d037bcf246f1913d92 (diff) | |
| download | plan9port-c5561c23cf394806cbf6d70a96f2dc0253f93745.tar.gz plan9port-c5561c23cf394806cbf6d70a96f2dc0253f93745.zip | |
Checkpoint -- still merging with Taj's version of the world.
Diffstat (limited to 'src/cmd/tbl/t9.c')
| -rw-r--r-- | src/cmd/tbl/t9.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/tbl/t9.c b/src/cmd/tbl/t9.c index bf1978a9..da96e05f 100644 --- a/src/cmd/tbl/t9.c +++ b/src/cmd/tbl/t9.c @@ -1,6 +1,6 @@ /* t9.c: write lines for tables over 200 lines */ # include "t.h" -static useln; +static int useln; void yetmore(void) @@ -30,7 +30,7 @@ domore(char *dataln) if (prefix(".TE", dataln)) return(0); if (dataln[0] == '.' && !isdigit(dataln[1])) { - Bprint(&tabout, "%s\n", dataln); + fprintf(tabout, "%s\n", dataln); return(1); } fullbot[0] = 0; |
