Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

errno.c 246B

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;