From: Jay Freeman (saurik) Date: Sun, 20 Jul 2008 02:29:55 +0000 (+0000) Subject: Moved _trace to stderr. X-Git-Url: https://git.saurik.com/minimal.git/commitdiff_plain/9f1a211eb5e9be2ad45a040428394ced9e49bbe9 Moved _trace to stderr. --- 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)