diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-14 18:56:06 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-14 18:56:06 +0200 |
commit | a892293556960b0813098ede7da7a34774da7d3c (patch) | |
tree | 85f4bd5e1a77a1f25f6a5285430a617a5e1bd4f9 /posix | |
parent | 151fc88916ca2d6fb1fc3b945dbd8912ff162c94 (diff) | |
download | egawk-a892293556960b0813098ede7da7a34774da7d3c.tar.gz egawk-a892293556960b0813098ede7da7a34774da7d3c.tar.bz2 egawk-a892293556960b0813098ede7da7a34774da7d3c.zip |
API cleanups and doc additions.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/ChangeLog | 5 | ||||
-rw-r--r-- | posix/gawkmisc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/posix/ChangeLog b/posix/ChangeLog index 982f6bd7..17a93f7f 100644 --- a/posix/ChangeLog +++ b/posix/ChangeLog @@ -1,3 +1,8 @@ +2012-10-14 Arnold D. Robbins <arnold@skeeve.com> + + * gawkmisc.c (os_isreadable): Change name of input parameter to + awk_inputbuf_t. + 2012-08-08 Arnold D. Robbins <arnold@skeeve.com> * gawkmisc.pc (os_isreadable): Take IOBUF_PUBLIC instead of fd and diff --git a/posix/gawkmisc.c b/posix/gawkmisc.c index ebcee8a0..90bf1c38 100644 --- a/posix/gawkmisc.c +++ b/posix/gawkmisc.c @@ -207,7 +207,7 @@ os_isdir(int fd) /* os_isreadable --- fd can be read from */ int -os_isreadable(const IOBUF_PUBLIC *iobuf, bool *isdir) +os_isreadable(const awk_input_buf_t *iobuf, bool *isdir) { *isdir = false; |