diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-23 05:54:44 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-23 05:54:44 +0200 |
commit | 7704e90c4f3aa4b3ce093bd9d67dee2b70f5acbc (patch) | |
tree | 005ae0351a248b534b656a9570d0c706df3c176e /awk.h | |
parent | d564505f72518910bfb835a53b697d64613b6240 (diff) | |
download | egawk-7704e90c4f3aa4b3ce093bd9d67dee2b70f5acbc.tar.gz egawk-7704e90c4f3aa4b3ce093bd9d67dee2b70f5acbc.tar.bz2 egawk-7704e90c4f3aa4b3ce093bd9d67dee2b70f5acbc.zip |
Change return type on some functions from int to bool.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1914,7 +1914,7 @@ fixtype(NODE *n) * non-null. Otherwise, the value is false. */ -static inline int +static inline bool boolval(NODE *t) { (void) fixtype(t); |