aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-07-24 15:49:20 -0400
committerArnold D. Robbins <arnold@skeeve.com>2014-07-24 15:49:20 -0400
commit91f979adfcc3c19bec24fc5272c23c065ba3040b (patch)
tree47b9bb9684dd17ea57d5979764b60cecc934d14c /awk.h
parent412c272389116f18218148c7a84c0486ad814051 (diff)
downloadegawk-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/awk.h b/awk.h
index 65448400..a322a0b2 100644
--- a/awk.h
+++ b/awk.h
@@ -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);