close.c 123 B

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