test_ppoll_dynamic.c (241B)
1 #include "common.h" 2 3 #define _GNU_SOURCE 4 #include <poll.h> 5 6 int main(int argc, char** argv) { 7 struct pollfd buffer[8] = {0}; 8 9 CHK_FAIL_START 10 ppoll(buffer, argc, NULL, NULL); 11 CHK_FAIL_END 12 13 puts((const char*)buffer); 14 return ret; 15 }