poll.cxx 84 B

1234567
  1. // Test for poll().
  2. #include <poll.h>
  3. int main()
  4. {
  5. return poll(nullptr, 0, 0);
  6. }