diff options
Diffstat (limited to '7_1')
-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] = '-'; |