diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-07-24 15:49:20 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-07-24 15:49:20 -0400 |
commit | 91f979adfcc3c19bec24fc5272c23c065ba3040b (patch) | |
tree | 47b9bb9684dd17ea57d5979764b60cecc934d14c /awk.h | |
parent | 412c272389116f18218148c7a84c0486ad814051 (diff) | |
download | egawk-91f979adfcc3c19bec24fc5272c23c065ba3040b.tar.gz egawk-91f979adfcc3c19bec24fc5272c23c065ba3040b.tar.bz2 egawk-91f979adfcc3c19bec24fc5272c23c065ba3040b.zip |
Bug fix for I/O errors in the middle of a file.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1531,7 +1531,7 @@ extern char *find_source(const char *src, struct stat *stb, int *errcode, int is extern NODE *do_getline_redir(int intovar, enum redirval redirtype); extern NODE *do_getline(int intovar, IOBUF *iop); extern struct redirect *getredirect(const char *str, int len); -extern int inrec(IOBUF *iop, int *errcode); +extern bool inrec(IOBUF *iop, int *errcode); extern int nextfile(IOBUF **curfile, bool skipping); /* main.c */ extern int arg_assign(char *arg, bool initing); |