You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. #include <errno.h>
  2. /** @file
  3. *
  4. * Error codes
  5. *
  6. * This file provides the global variable #errno.
  7. *
  8. */
  9. /**
  10. * Global "last error" number.
  11. *
  12. * This is valid only when a function has just returned indicating a
  13. * failure.
  14. *
  15. */
  16. int errno;