# Copyright (c) 2023 Yuki Kimoto
# MIT License

class Sys::Poll {
  version_from Sys;

  use Sys::Poll::PollfdArray;
  use Sys::Poll::Constant;
  
  native static method poll : int ($fds : Sys::Poll::PollfdArray, $nfds : int, $timeout : int);
}