aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-07-03 11:16:36 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-07-03 11:16:36 +0300
commit30a60fc794e84da90fed6871ff27d668fe4a391e (patch)
treea6294c9607f4964212c10daa3b1dde3501bf4d86 /awk.h
parentc997a0e5d3857eb48e4292f0b42da9b3bbb985fb (diff)
parentf60ced696bc752cdc1a1f45ce2cc9d6149be7087 (diff)
downloadegawk-30a60fc794e84da90fed6871ff27d668fe4a391e.tar.gz
egawk-30a60fc794e84da90fed6871ff27d668fe4a391e.tar.bz2
egawk-30a60fc794e84da90fed6871ff27d668fe4a391e.zip
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/awk.h b/awk.h
index cccb8ce5..eec41147 100644
--- a/awk.h
+++ b/awk.h
@@ -1159,7 +1159,8 @@ enum do_flag_values {
DO_SANDBOX = 0x01000, /* sandbox mode - disable 'system' function & redirections */
DO_PROFILE = 0x02000, /* profile the program */
DO_DEBUG = 0x04000, /* debug the program */
- DO_MPFR = 0x08000 /* arbitrary-precision floating-point math */
+ DO_MPFR = 0x08000, /* arbitrary-precision floating-point math */
+ DO_ITRACE = 0x10000 /* trace byte-code instructions */
};
#define do_traditional (do_flags & DO_TRADITIONAL)
@@ -1174,6 +1175,7 @@ enum do_flag_values {
#define do_sandbox (do_flags & DO_SANDBOX)
#define do_debug (do_flags & DO_DEBUG)
#define do_mpfr (do_flags & DO_MPFR)
+#define do_itrace (do_flags & DO_ITRACE)
extern bool do_optimize;
extern int use_lc_numeric;