mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-26 08:01:05 +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);
|
||
|
}
|