aboutsummaryrefslogtreecommitdiff
path: root/system/include/libc/stdio.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-20 19:53:24 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-20 19:53:24 -0800
commit9f00292b7c7fa0cf69b8704c23b092811a9f9cc1 (patch)
tree8fb3478da53b0b168a0afe657a681a04d24c1d39 /system/include/libc/stdio.h
parent7953c8c6b8911647de68b4f22206650672cbca0a (diff)
parent78fde14808c0b075bd040d23b1d8cfb349c7cd84 (diff)
Merge branch 'master' into incoming
Diffstat (limited to 'system/include/libc/stdio.h')
-rw-r--r--system/include/libc/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/libc/stdio.h b/system/include/libc/stdio.h
index fb4501c4..1b0c30f5 100644
--- a/system/include/libc/stdio.h
+++ b/system/include/libc/stdio.h
@@ -647,7 +647,7 @@ _ELIDABLE_INLINE int __sputc_r(struct _reent *_ptr, int _c, FILE *_p) {
#define __sclearerr(p) ((void)((p)->_flags &= ~(__SERR|__SEOF)))
#define __sfileno(p) ((p)->_file)
-#ifndef _REENT_SMALL
+#if 0 /* XXX Emscripten ndef _REENT_SMALL */
#define feof(p) __sfeof(p)
#define ferror(p) __sferror(p)
#define clearerr(p) __sclearerr(p)