diff options
Diffstat (limited to 'system/include/libc')
-rw-r--r-- | system/include/libc/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/libc/stdio.h b/system/include/libc/stdio.h index 2912eafa..a92de046 100644 --- a/system/include/libc/stdio.h +++ b/system/include/libc/stdio.h @@ -657,7 +657,7 @@ _ELIDABLE_INLINE int __sputc_r(struct _reent *_ptr, int _c, FILE *_p) { #define fileno(p) __sfileno(p) #endif -#ifndef __CYGWIN__ +#if !defined(__CYGWIN__) && !defined(EMSCRIPTEN) #ifndef lint #define getc(fp) __sgetc_r(_REENT, fp) #define putc(x, fp) __sputc_r(_REENT, x, fp) |