diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-06 16:32:03 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-06 16:32:03 +0300 |
commit | 7f1951a1ef8adca7fdd29fae185931b69b50e4d3 (patch) | |
tree | 67f89e22374fbabc0c390a1ea085e844fe1ab76c /7_1/main.c | |
parent | d62443adaba86f94866e5d3f4eaf4e113a13e6fc (diff) |
fixed
Diffstat (limited to '7_1/main.c')
-rw-r--r-- | 7_1/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -10,7 +10,6 @@ char* tobin(long int x) { char sgn = x < 0; x *= ((x > 0) << 1) - 1; - printf("%li\n", x); for (; x; x >>= 1) buffer[i++] = '0' + (x & 1); ret = calloc(i + 1 + sgn, sizeof *ret); ret[0] = '-'; |