summaryrefslogtreecommitdiff
path: root/tests/test_poll.c
blob: 06237aa4324df0da36c37f27c0ea954350b9b79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "common.h"

#include <poll.h>

int main(int argc, char** argv) {
  struct pollfd buffer[12] = {0};

  CHK_FAIL_START
  poll(buffer, 14, 0);
  CHK_FAIL_END

  puts(buffer);
  return ret;
}