diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-27 06:01:30 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-02-27 06:01:30 +0200 |
commit | d80438ac6fef9137ab0450f02cd507d422aa9c32 (patch) | |
tree | 284a17657812e9322dc5ca4ec95b970d5b2e28f9 /awk.h | |
parent | 6994c5d1fc086915699a04bba84596c6fbf488da (diff) | |
download | egawk-d80438ac6fef9137ab0450f02cd507d422aa9c32.tar.gz egawk-d80438ac6fef9137ab0450f02cd507d422aa9c32.tar.bz2 egawk-d80438ac6fef9137ab0450f02cd507d422aa9c32.zip |
Lots of enum/int fixes.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1327,6 +1327,7 @@ if (--val) \ /* array.c */ typedef enum { SORTED_IN = 1, ASORT, ASORTI } sort_context_t; typedef enum { + ANONE = 0x00, /* "unused" value */ AINDEX = 0x001, /* list of indices */ AVALUE = 0x002, /* list of values */ AINUM = 0x004, /* numeric index */ |