Files
qt5.12.8/config.tests/ppoll/main.cpp
2025-08-26 22:57:23 +08:00

15 lines
282 B
C++

/* Generated by configure */
#include <signal.h>
#include <poll.h>
int main(int argc, char **argv)
{
(void)argc; (void)argv;
/* BEGIN TEST: */
struct pollfd pfd;
struct timespec ts;
sigset_t sig;
ppoll(&pfd, 1, &ts, &sig);
/* END TEST */
return 0;
}