1 /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
3 * GNU Library General Public License (LGPL) version 2 or later.
5 * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
13 #undef ferror_unlocked
14 int ferror_unlocked(register FILE *stream
)
16 __STDIO_STREAM_VALIDATE(stream
);
18 return __FERROR_UNLOCKED(stream
);
21 #ifndef __UCLIBC_HAS_THREADS__
22 strong_alias(ferror_unlocked
,ferror
)
25 #elif defined __UCLIBC_HAS_THREADS__
27 int ferror(register FILE *stream
)
30 __STDIO_AUTO_THREADLOCK_VAR
;
32 __STDIO_AUTO_THREADLOCK(stream
);
34 __STDIO_STREAM_VALIDATE(stream
);
36 retval
= __FERROR_UNLOCKED(stream
);
38 __STDIO_AUTO_THREADUNLOCK(stream
);