summaryrefslogtreecommitdiff
path: root/apps/plugins/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r--apps/plugins/lib/stdio_compat.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/plugins/lib/stdio_compat.c b/apps/plugins/lib/stdio_compat.c
index c1d5a7bc77..2adc4236d2 100644
--- a/apps/plugins/lib/stdio_compat.c
+++ b/apps/plugins/lib/stdio_compat.c
@@ -120,16 +120,11 @@ size_t _fwrite_(const void *ptr, size_t size, size_t nmemb, _FILE_ *stream)
120 120
121 return ret / size; 121 return ret / size;
122 } 122 }
123#if 0
124 /* stderr, stdout (disabled) */ 123 /* stderr, stdout (disabled) */
125 else 124 else
126 { 125 {
127 char buf[10];
128 rb->snprintf(buf, 10, "%%%ds", (int)(size*nmemb));
129 rb->splashf(HZ, buf, ptr);
130 return size * nmemb; 126 return size * nmemb;
131 } 127 }
132#endif
133} 128}
134 129
135int _fseek_(_FILE_ *stream, long offset, int whence) 130int _fseek_(_FILE_ *stream, long offset, int whence)