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