diff options
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index bf356d7..3752df9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -203,8 +203,9 @@ int klogctl(int type, char *b, int len); # define fgets(s,n,stream) fgets_unlocked(s,n,stream) # undef fputs # define fputs(s,stream) fputs_unlocked(s,stream) -# undef fflush -# define fflush(stream) fflush_unlocked(stream) +/* musl <= 1.1.15 does not support fflush_unlocked(NULL) */ +//# undef fflush +//# define fflush(stream) fflush_unlocked(stream) # undef feof # define feof(stream) feof_unlocked(stream) # undef ferror |