diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-13 22:01:51 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-13 22:01:51 +0300 |
commit | 63d8faa8b5d2bdeec73044c95f345b3992248c74 (patch) | |
tree | 30adf07717c6658d99e342e1da0d327f4df789c8 /builtin.c | |
parent | af0df5a7a88ef9ae38f364302652b13e760f872d (diff) | |
parent | 39c0dd124b19b49e002bc5c79edc703df51ffd3b (diff) | |
download | egawk-63d8faa8b5d2bdeec73044c95f345b3992248c74.tar.gz egawk-63d8faa8b5d2bdeec73044c95f345b3992248c74.tar.bz2 egawk-63d8faa8b5d2bdeec73044c95f345b3992248c74.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3971,6 +3971,7 @@ do_bindtextdomain(int nargs) return make_string(the_result, strlen(the_result)); } +#ifdef SUPPLY_INTDIV /* do_intdiv --- do integer division, return quotient and remainder in dest array */ /* @@ -4039,6 +4040,7 @@ do_intdiv(int nargs) return make_number((AWKNUM) 0.0); } +#endif /* SUPPLY_INTDIV */ /* do_typeof --- return a string with the type of the arg */ |