mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-26 08:57:26 +02:00
7 lines
84 B
C++
7 lines
84 B
C++
// Test for poll().
|
|
#include <poll.h>
|
|
|
|
int main()
|
|
{
|
|
return poll(nullptr, 0, 0);
|
|
}
|