__glibc_strerror_r.c 598 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (C) 2002 Manuel Novoa III
  3. * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. /* get rid of REDIRECT */
  8. #define strerror_r __hide_strerror_r
  9. #include <features.h>
  10. #include <string.h>
  11. #undef strerror_r
  12. char *__glibc_strerror_r(int errnum, char *strerrbuf, size_t buflen)
  13. {
  14. __xpg_strerror_r(errnum, strerrbuf, buflen);
  15. return strerrbuf;
  16. }
  17. libc_hidden_def(__glibc_strerror_r)
  18. #if !defined __USE_XOPEN2K || defined __USE_GNU
  19. strong_alias(__glibc_strerror_r,strerror_r)
  20. #endif