cctools
ppoll_compat.h
1/*
2Copyright (C) 2022 The University of Notre Dame
3This software is distributed under the GNU General Public License.
4See the file COPYING for details.
5*/
6
7#ifndef PPOLL_COMPAT_H
8#define PPOLL_COMPAT_H
9
10#include <poll.h>
11
34int ppoll_compat(struct pollfd fds[], nfds_t nfds, int stoptime);
35
38void ppoll_compat_set_up_sigchld(void);
39
40#endif