Displaying 1 result from an estimated 1 matches for "81e54ac".
2011 Jun 04
1
[PATCH] [SHELL] Fix klibc DEBUG compilation v2
...w.c:(.text+0x86): undefined reference to `setlinebuf'
Skip setlinebuf and use fclose/fopen inside SMALL.
Signed-off-by: maximilian attems <max at stro.at>
---
 src/show.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/show.c b/src/show.c
index 14dbef3..81e54ac 100644
--- a/src/show.c
+++ b/src/show.c
@@ -378,7 +378,11 @@ opentrace(void)
 	scopy("./trace", s);
 #endif /* not_this_way */
 	if (tracefile) {
+#ifndef SMALL
 		if (!freopen(s, "a", tracefile)) {
+#else
+		if (!(!fclose(tracefile) && (tracefile = fopen(s, "a&quo...