aboutsummaryrefslogtreecommitdiffstats
path: root/sdk/std/poll.h
blob: a9eb3f9146b6358c281e44eb28158b5e237ddbf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Find or insert replacement "poll" routine.
 * $Id$
 * Copyright (c) 1997 by Tycho Softworks.
 * For conditions of distribution and use see product license.
 */

#ifndef	__STD_POLL_H__
#define	__STD_POLL_H__

#ifdef	POLL_H_MISSING
#ifndef	SYS_POLL_H_MISSING
#include <sys/poll.h>
#endif
#else
#include <poll.h>
#endif

#include <std/time.h>

#endif