diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-08 21:20:17 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-08 21:20:17 +0200 |
commit | 995f235bdaa3a2b44d3e920f81a9f76373c56f58 (patch) | |
tree | 730670024001f2dbc010fa5c43c2dad2ad09bd13 /int_array.c | |
parent | 66c1625cc8cec979cfe265daaa2b55e29b956f83 (diff) | |
parent | 0e1fd064f13b220a129fc720607d3f62b55b3b19 (diff) | |
download | gawk-feature/namespaces.tar.gz |
Merge branch 'master' into feature/namespacesfeature/namespaces
Diffstat (limited to 'int_array.c')
-rw-r--r-- | int_array.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/int_array.c b/int_array.c index 9f705176..475f16fe 100644 --- a/int_array.c +++ b/int_array.c @@ -46,7 +46,8 @@ static inline NODE **int_find(NODE *symbol, long k, uint32_t hash1); static NODE **int_insert(NODE *symbol, long k, uint32_t hash1); static void grow_int_table(NODE *symbol); -afunc_t int_array_func[] = { +const array_funcs_t int_array_func = { + "int", int_array_init, is_integer, int_lookup, |