Portable build framework for OpenNTPD

15 lines
188 B

  1. /*
  2. * Public domain
  3. * poll.h compatibility shim
  4. */
  5. #include_next <poll.h>
  6. #ifndef LIBCOMPAT_POLL_H
  7. #define LIBCOMPAT_POLL_H
  8. #ifndef INFTIM
  9. #define INFTIM (-1)
  10. #endif
  11. #endif