From 9f1a211eb5e9be2ad45a040428394ced9e49bbe9 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sun, 20 Jul 2008 02:29:55 +0000 Subject: [PATCH] Moved _trace to stderr. --- stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib.h b/stdlib.h index 6c3c491..8d0f8c9 100644 --- a/stdlib.h +++ b/stdlib.h @@ -74,7 +74,7 @@ for (;;) #define _trace() \ - printf("_trace(%s:%u): %s\n", __FILE__, __LINE__, __FUNCTION__) + fprintf(stderr, "_trace(%s:%u): %s\n", __FILE__, __LINE__, __FUNCTION__) #define _not(type) \ ((type) ~ (type) 0) -- 2.50.0