Rename poll_.h to poll.in.h.
[gnulib.git] / modules / poll
1 Description:
2 poll() function: wait for some event on a set of file descriptors.
3
4 Files:
5 lib/poll.c
6 lib/poll.in.h
7 m4/poll.m4
8
9 Depends-on:
10 sys_select
11 sys_time
12
13 configure.ac:
14 gl_FUNC_POLL
15
16 Makefile.am:
17 BUILT_SOURCES += $(POLL_H)
18
19 # We need the following in order to create <poll.h> when the system
20 # doesn't have one.
21 poll.h: poll.in.h
22         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
23           cat $(srcdir)/poll.in.h; \
24         } > $@-t
25         mv -f $@-t $@
26 MOSTLYCLEANFILES += poll.h poll.h-t
27
28 Include:
29 #include <poll.h>
30
31 License:
32 LGPLv2+
33
34 Maintainer:
35 Paolo Bonzini  <bonzini@gnu.org>