1 #include <errno.h> 2 3 extern int foo (void); 4 5 int foo(void)6 foo (void) 7 { 8 errno = 0; 9 return 0; 10 } 11