errno.c 90 B

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