From 2f3cc97163633afe91b00fc8e1d711bd5b591f21 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Fri, 22 Sep 2023 15:17:05 +0200 Subject: [PATCH] remove debug output --- bfpcompiler/src/compilefuck.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/bfpcompiler/src/compilefuck.c b/bfpcompiler/src/compilefuck.c index 16bdbf9..481a87e 100644 --- a/bfpcompiler/src/compilefuck.c +++ b/bfpcompiler/src/compilefuck.c @@ -124,15 +124,6 @@ int main (int argc, char** argv) { exit(EXIT_FAILURE); } - /* DEBUG START */ - - for (int i = 0; i < 533; i++) { - (void)printf("%c", binary[i]); - } - - - /* DEBUG END */ - if (fprintf(fout, "%s", binary) < 0) { (void)printf("ERROR: Could not write to file %s!\n", filename_compiled); exit(EXIT_FAILURE);