Linux uses unistd.h not osfcn.h
This commit is contained in:
parent
e8fe4970eb
commit
5aea241fd1
|
|
@ -37,7 +37,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/stat.h>
|
||||
#if defined(__osf__)
|
||||
#if defined(__osf__) || defined(linux)
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#if !defined(USL) && !defined(__uxp__)
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#if defined(__osf__)
|
||||
#if defined(__osf__) || defined(linux)
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#ifndef USL
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#if defined(__osf__)
|
||||
#if defined(__osf__) || defined(linux)
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#if defined (USL) || defined(__uxp__)
|
||||
|
|
|
|||
Loading…
Reference in New Issue