diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-08 22:20:46 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-08 22:20:46 +0300 |
commit | 339f21ce25f2144bf6941c925594039bdfe440b4 (patch) | |
tree | aafa71fae9130b24ab8851ce736fa1f9fcaa8187 /awk.h | |
parent | 4fdd2362ad9c9a215da4b4a9f2c96b15a5d5d881 (diff) | |
download | egawk-339f21ce25f2144bf6941c925594039bdfe440b4.tar.gz egawk-339f21ce25f2144bf6941c925594039bdfe440b4.tar.bz2 egawk-339f21ce25f2144bf6941c925594039bdfe440b4.zip |
Make profiling counts 64 bits.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -758,7 +758,7 @@ typedef struct exp_instruction { awk_value_t *(*efptr)(int num_actual_args, awk_value_t *result, struct awk_ext_func *finfo); - long dl; + long long dl; char *name; } d; |