Files
mercury/extras/posix/posix_workarounds.h
Thomas Conway d778c41f5d Add a bunch of modules for accessing POSIX.3 functionality directly from
Estimated hours taken: 5


Add a bunch of modules for accessing POSIX.3 functionality directly from
Mercury.
1999-10-12 00:12:26 +00:00

19 lines
605 B
C

/*----------------------------------------------------------------------------*/
/* Copyright (C) 1999 The University of Melbourne. */
/* This file may only be copied under the terms of the GNU Library General */
/* Public License - see the file COPYING.LIB in the Mercury distribution. */
/*----------------------------------------------------------------------------*/
#ifndef ME_POSIX_WORKAROUNDS_H
#define ME_POSIX_WORKAROUNDS_H
void ME_fd_zero(fd_set *fds);
void ME_fd_clr(int fd, fd_set *fds);
void ME_fd_set(int fd, fd_set *fds);
int ME_fd_isset(int fd, fd_set *fds);
#endif