/* * Portable support for file manipulation and access related functions. * $Id$ * Copyright (c) 1997 by Tycho Softworks. * For conditions of distribution and reuse see product license. */ #ifndef __STD_FILES_H__ #define __STD_FILES_H__ #ifndef __STD_TYPES_H__ #include #endif #include #include #ifndef UNISTD_H_MISSING #include #endif #ifndef SYS_FCNTL_H_MISSING #include #else #ifndef FCNTL_H_MISSING #include #endif #endif #ifndef IO_H_MISSING #include #endif #ifndef __STD_TYPES_H__ #include #endif #ifdef OFF_T_MISSING typedef long off_t; #endif #ifdef FD_T_MISSING typedef int fd_t; #endif #endif