poll_posix.h 218 B

1234567891011
  1. #ifndef LIBUSB_POLL_POSIX_H
  2. #define LIBUSB_POLL_POSIX_H
  3. #define usbi_write write
  4. #define usbi_read read
  5. #define usbi_close close
  6. #define usbi_poll poll
  7. int usbi_pipe(int pipefd[2]);
  8. #endif /* LIBUSB_POLL_POSIX_H */