errno.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* Copyright (C) 1991-2016 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <http://www.gnu.org/licenses/>. */
  14. /*
  15. * ISO C99 Standard: 7.5 Errors <errno.h>
  16. */
  17. #ifndef _ERRNO_H
  18. /* The includer defined __need_Emath if he wants only the definitions
  19. of EDOM and ERANGE, and not everything else. */
  20. #ifndef __need_Emath
  21. # define _ERRNO_H 1
  22. # include <features.h>
  23. #endif
  24. __BEGIN_DECLS
  25. /* Get the error number constants from the system-specific file.
  26. This file will test __need_Emath and _ERRNO_H. */
  27. #include <bits/errno.h>
  28. #undef __need_Emath
  29. #ifdef _ERRNO_H
  30. /* Declare the `errno' variable, unless it's defined as a macro by
  31. bits/errno.h. This is the case in GNU, where it is a per-thread
  32. variable. This redeclaration using the macro still works, but it
  33. will be a function declaration without a prototype and may trigger
  34. a -Wstrict-prototypes warning. */
  35. #ifndef errno
  36. extern int errno;
  37. #endif
  38. #ifdef __USE_GNU
  39. /* The full and simple forms of the name with which the program was
  40. invoked. These variables are set up automatically at startup based on
  41. the value of ARGV[0] (this works only if you use GNU ld). */
  42. extern char *program_invocation_name, *program_invocation_short_name;
  43. #endif /* __USE_GNU */
  44. #endif /* _ERRNO_H */
  45. __END_DECLS
  46. #endif /* _ERRNO_H */
  47. /* The Hurd <bits/errno.h> defines `error_t' as an enumerated type so
  48. that printing `error_t' values in the debugger shows the names. We
  49. might need this definition sometimes even if this file was included
  50. before. */
  51. #if defined __USE_GNU || defined __need_error_t
  52. # ifndef __error_t_defined
  53. typedef int error_t;
  54. # define __error_t_defined 1
  55. # endif
  56. # undef __need_error_t
  57. #endif