1/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
2#ifndef IOPAUSE_H
3#define IOPAUSE_H
4
5/* sysdep: +poll */
6#define IOPAUSE_POLL
7
8#include <sys/types.h>
9#include <sys/poll.h>
10
11typedef struct pollfd iopause_fd;
12#define IOPAUSE_READ POLLIN
13#define IOPAUSE_WRITE POLLOUT
14
15#include "taia.h"
16
17extern void iopause(iopause_fd *,unsigned int,struct taia *,struct taia *);
18
19#endif
20