7 lines
84 B
C++
7 lines
84 B
C++
// Test for poll().
|
|
#include <poll.h>
|
|
|
|
int main()
|
|
{
|
|
return poll(nullptr, 0, 0);
|
|
}
|