summaryrefslogtreecommitdiff
path: root/src/c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c')
-rw-r--r--src/c/lacweb.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/c/lacweb.c b/src/c/lacweb.c
index 9f17103a..e7cb381a 100644
--- a/src/c/lacweb.c
+++ b/src/c/lacweb.c
@@ -543,8 +543,6 @@ lw_Basis_string lw_Basis_strcat(lw_context ctx, lw_Basis_string s1, lw_Basis_str
int len = strlen(s1) + strlen(s2) + 1;
char *s;
- printf("s1 = %s\ns2 = %s\n", s1, s2);
-
lw_check_heap(ctx, len);
s = ctx->heap_front;
@@ -553,7 +551,5 @@ lw_Basis_string lw_Basis_strcat(lw_context ctx, lw_Basis_string s1, lw_Basis_str
strcat(s, s2);
ctx->heap_front += len;
- printf("s = %s\n", s);
-
return s;
}