#ifndef LIBPOSIX_H #ifdef HAVE_SYS_WAIT_H #include #endif /* HAVE_SYS_WAIT_H */ #ifdef HAVE_SIGNAL_H #include #endif /* HAVE_SIGNAL_H */ #ifdef HAVE_SYS_UTSNAME_H #include #endif /* HAVE_SYS_UTSNAME_H */ #ifdef HAVE_SYS_TIMES_H #include #endif /* HAVE_SYS_TIMES_H */ #ifdef HAVE_DIRENT_H #include #endif /* HAVE_DIRENT_H */ #ifdef HAVE_SYS_STAT_H #include #endif /* HAVE_SYS_STAT_H */ #ifdef HAVE_FCNTL_H #include #endif /* HAVE_FCNTL_H */ #ifdef HAVE_UNISTD_H #include #endif /* HAVE_UNISTD_H */ #ifdef HAVE_UTIME_H #include #endif /* HAVE_UTIME_H */ #ifdef HAVE_TERMIOS_H #include #endif /* HAVE_TERMIOS_H */ #ifdef HAVE_GRP_H #include #endif /* HAVE_GRP_H */ #ifdef HAVE_PWD_H #include #endif /* HAVE_PWD_H */ #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #ifndef _POSIX_VDISABLE #define _POSIX_VDISABLE '\0' /* Just a guess...but it works for Suns */ #endif extern I_ nocldstop; char *strDup (const char *); int setenviron (char **); int copyenv (void); int _setenv (char *); int delenv (char *); int execvpe (char *, char **, char **); void stg_sigaddset(sigset_t *newset, sigset_t *oldset, int signum); void stg_sigdelset(sigset_t *newset, sigset_t *oldset, int signum); #define LIBPOSIX_H #endif