errno.c 119 B

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