diff options
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 17100b6b..551fcec5 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -34099,7 +34099,7 @@ in the symbol table: #include "gawkapi.h" static const gawk_api_t *api; /* for convenience macros to work */ -static awk_ext_id_t *ext_id; +static awk_ext_id_t ext_id; static const char *ext_version = "testarray extension: version 1.0"; int plugin_is_GPL_compatible; @@ -34841,7 +34841,7 @@ to make use of the API macros and boilerplate code #include "stack.h" static const gawk_api_t *api; /* for convenience macros to work */ -static awk_ext_id_t *ext_id; +static awk_ext_id_t ext_id; static awk_bool_t init_filefuncs(void); static awk_bool_t (*init_func)(void) = init_filefuncs; static const char *ext_version = "filefuncs extension: version 1.0"; |