strerror.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * libcompat - system compatibility library
  3. *
  4. * Copyright © 1995 Ian Jackson <ian@chiark.greenend.org.uk>
  5. *
  6. * This is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2,
  9. * or (at your option) any later version.
  10. *
  11. * This is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <config.h>
  20. #include <stdio.h>
  21. #include <gettext.h>
  22. #define _(str) gettext(str)
  23. #ifndef HAVE_STRERROR
  24. extern const char *const sys_errlist[];
  25. extern const int sys_nerr;
  26. const char *
  27. strerror(int e)
  28. {
  29. static char buf[100];
  30. if (e >= 0 && e < sys_nerr)
  31. return sys_errlist[e];
  32. sprintf(buf, _("Unknown error %d"), e);
  33. return buf;
  34. }
  35. #endif