commit bash-20210127 snapshot

This commit is contained in:
Chet Ramey
2021-02-01 15:09:07 -05:00
parent 4be5608573
commit fcad1d1e84
10 changed files with 90 additions and 26 deletions
+1 -2
View File
@@ -27,10 +27,9 @@
typedef intmax_t arrayind_t;
enum atype {array_indexed, array_assoc}; /* only array_indexed used */
enum atype {array_indexed, array_assoc}; /* not used */
typedef struct array {
enum atype type;
arrayind_t max_index;
int num_elements;
struct array_element *head;