// posix.h -- Helper functions for POSIX-flavored OSs. /* Copyright (C) 2000 Free Software Foundation This file is part of libgcj. This software is copyrighted work licensed under the terms of the Libgcj License. Please consult the file "LIBGCJ_LICENSE" for details. */ /* Required on Tru64 UNIX V4/V5 so defines prototypes of socket functions with socklen_t instead of size_t. This must be defined early so defines the correct version of __PIIX. */ #define _POSIX_PII_SOCKET #include #include #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_SYS_SELECT_H #include #endif #ifdef HAVE_UNISTD_H #include #endif extern int _Jv_select (int n, fd_set *, fd_set *, fd_set *, struct timeval *); extern void _Jv_gettimeofday (struct timeval *);