errno.c 89 B

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