about summary refs log tree commit diff stats
path: root/prof_history.c
diff options
context:
space:
mode:
Diffstat (limited to 'prof_history.c')
-rw-r--r--prof_history.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/prof_history.c b/prof_history.c
index 75c22cb3..3653d181 100644
--- a/prof_history.c
+++ b/prof_history.c
@@ -1,4 +1,3 @@
-#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -33,7 +32,6 @@ PHistory p_history_new(unsigned int size)
 
 void p_history_append(PHistory history, char *item)
 {
-    printf("\n");
     // copy input, default to ""
     char *copied = "";
     if (item != NULL) {