1 /* See LICENSE of license details. */ 2 3 #include <errno.h> 4 #include "stub.h" 5 _close(int fd)6 int _close(int fd) 7 { 8 return _stub(EBADF); 9 } 10