Get rid of ZORK

This commit is contained in:
tim.schubert@tu-bs.de 2016-10-28 00:29:31 +02:00
parent 7032aad9f2
commit f42b7a354d

View file

@ -168,7 +168,6 @@ void bstr(unsigned int n, char **out)
// voodoo
int msb = 32 - __builtin_clz(n);
(*out) = (char*) calloc(msb+1, sizeof (char));
printf("This is ZORK! %d\n", msb);
(*out)[msb] = '\0';
for (msb = msb-1; msb >= 0; msb--) {
(*out)[msb] = (char) (48 + n % 2);