File: poll.h

package info (click to toggle)
openntpd 1%3A6.0p1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,212 kB
  • ctags: 1,294
  • sloc: sh: 11,521; ansic: 10,305; yacc: 663; makefile: 303
file content (15 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain
 * poll.h compatibility shim
 */

#include_next <poll.h>

#ifndef LIBCOMPAT_POLL_H
#define LIBCOMPAT_POLL_H

#ifndef INFTIM
#define INFTIM          (-1)
#endif

#endif