clearerr.c 742 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * GNU Library General Public License (LGPL) version 2 or later.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. #include "_stdio.h"
  8. #undef clearerr
  9. #ifdef __DO_UNLOCKED
  10. #undef clearerr_unlocked
  11. void clearerr_unlocked(register FILE *stream)
  12. {
  13. __STDIO_STREAM_VALIDATE(stream);
  14. __CLEARERR_UNLOCKED(stream);
  15. }
  16. #ifndef __UCLIBC_HAS_THREADS__
  17. strong_alias(clearerr_unlocked,clearerr)
  18. #endif
  19. #elif defined __UCLIBC_HAS_THREADS__
  20. void clearerr(register FILE *stream)
  21. {
  22. __STDIO_AUTO_THREADLOCK_VAR;
  23. __STDIO_AUTO_THREADLOCK(stream);
  24. __STDIO_STREAM_VALIDATE(stream);
  25. __CLEARERR_UNLOCKED(stream);
  26. __STDIO_AUTO_THREADUNLOCK(stream);
  27. }
  28. #endif