mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-25 15:41: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);
|
|
}
|