diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-11 22:02:11 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-11 22:02:11 +0200 |
commit | 99de0d0b65410e0c53239cce62df89094f9f2993 (patch) | |
tree | 6947934e9224e762c20a7a41b1a9f2a1d257d440 /doc/gawk.texi | |
parent | cc8c981c9eaed42e1afd278afac787cd2aeab55f (diff) | |
parent | d2bd8c645f8511288f93e244d5411ebc0166e9cd (diff) | |
download | egawk-99de0d0b65410e0c53239cce62df89094f9f2993.tar.gz egawk-99de0d0b65410e0c53239cce62df89094f9f2993.tar.bz2 egawk-99de0d0b65410e0c53239cce62df89094f9f2993.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 61b232ea..ab3437b6 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -35125,7 +35125,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; @@ -35867,7 +35867,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"; |