errno.c 89 B

123456789
  1. #include <errno.h>
  2. int errno = 0;
  3. int *
  4. __errno_location ( void )
  5. {
  6. return &errno;
  7. }