diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-25 22:10:58 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-25 22:10:58 +0300 |
commit | 00682d87a1a1c0535c0fa5adb27867578dc76d49 (patch) | |
tree | 604bff488e97735f1a1c14078f02a99610546911 /awk.h | |
parent | 7453c813457583197fcf0fe1c7d2301d6013bfea (diff) | |
download | egawk-00682d87a1a1c0535c0fa5adb27867578dc76d49.tar.gz egawk-00682d87a1a1c0535c0fa5adb27867578dc76d49.tar.bz2 egawk-00682d87a1a1c0535c0fa5adb27867578dc76d49.zip |
New POSIX rules for string comparison.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1442,7 +1442,7 @@ extern int sanitize_exit_status(int status); extern void PUSH_CODE(INSTRUCTION *cp); extern INSTRUCTION *POP_CODE(void); extern void init_interpret(void); -extern int cmp_nodes(NODE *t1, NODE *t2); +extern int cmp_nodes(NODE *t1, NODE *t2, bool use_strcmp); extern int cmp_awknums(const NODE *t1, const NODE *t2); extern void set_IGNORECASE(void); extern void set_OFS(void); |