aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-09-14 13:16:53 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-09-14 13:16:53 +0300
commit87848093635e0d4e647601fe788e024ee90e1be6 (patch)
treecffe97a542903ec311e2eb404b1511499b150b5e /awk.h
parent81f53c08b12ba4150e02a2dcb647d8176570fca1 (diff)
downloadegawk-87848093635e0d4e647601fe788e024ee90e1be6.tar.gz
egawk-87848093635e0d4e647601fe788e024ee90e1be6.tar.bz2
egawk-87848093635e0d4e647601fe788e024ee90e1be6.zip
Move some prototypes to awk.h from main.c.
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/awk.h b/awk.h
index 75d92174..1051036f 100644
--- a/awk.h
+++ b/awk.h
@@ -1464,6 +1464,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);