diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-09-14 13:24:16 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-09-14 13:24:16 +0300 |
commit | ab8abaa0b01833512ca9009c1a471e93577d2f8e (patch) | |
tree | 3cb585a2538a4399639660a80ce827fbcf0705ed | |
parent | ff1c6aa3df9fb3432d3cdcc61be7fa2fdc1d517e (diff) | |
parent | 87848093635e0d4e647601fe788e024ee90e1be6 (diff) | |
download | egawk-ab8abaa0b01833512ca9009c1a471e93577d2f8e.tar.gz egawk-ab8abaa0b01833512ca9009c1a471e93577d2f8e.tar.bz2 egawk-ab8abaa0b01833512ca9009c1a471e93577d2f8e.zip |
Merge branch 'gawk-4.2-stable'
-rwxr-xr-x | ChangeLog | 6 | ||||
-rw-r--r-- | awk.h | 3 | ||||
-rw-r--r-- | main.c | 3 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2018-09-14 Adrian Bunk <bunk@debian.org> + + * awk.h (init_debug, debug_prog): Move prototypes to here from ... + * main.c: ... here. + Thanks to Michael Tautschnig for noticing the type mismatch. + 2018-09-07 Arnold D. Robbins <arnold@skeeve.com> * awkgram.y, debug.c, ext.c, gawkapi.c, gawkapi.h, @@ -1454,6 +1454,9 @@ extern NODE *do_typeof(int nargs); extern int strncasecmpmbs(const unsigned char *, const unsigned char *, size_t); extern int sanitize_exit_status(int status); +/* debug.c */ +extern void init_debug(void); +extern int debug_prog(INSTRUCTION *pc); /* eval.c */ extern void PUSH_CODE(INSTRUCTION *cp); extern INSTRUCTION *POP_CODE(void); @@ -69,9 +69,6 @@ static void init_fds(void); static void init_groupset(void); static void save_argv(int, char **); -extern int debug_prog(INSTRUCTION *pc); /* debug.c */ -extern int init_debug(); /* debug.c */ - /* These nodes store all the special variables AWK uses */ NODE *ARGC_node, *ARGIND_node, *ARGV_node, *BINMODE_node, *CONVFMT_node; NODE *ENVIRON_node, *ERRNO_node, *FIELDWIDTHS_node, *FILENAME_node; |