diff --git a/lib/zlib/zutil.h b/lib/zlib/zutil.h
index 46522c8e65..114cb744e0 100644
--- a/lib/zlib/zutil.h
+++ b/lib/zlib/zutil.h
@@ -91,7 +91,8 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
 
 /* Diagnostic functions */
 #ifdef DEBUG
-#  include <stdio.h>
+/* Not valid for U-boot
+#  include <stdio.h> */
    extern int z_verbose;
    extern void z_error    OF((char *m));
 #  define Assert(cond,msg) {if(!(cond)) z_error(msg);}