mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 03:32:24 +00:00
No osfcn.h available on linux
This commit is contained in:
parent
a4442878a1
commit
3d25ba1ea1
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ extern "C" in_addr_t inet_addr(const char *);
|
|||
#ifdef __osf__
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#if !defined(USL) && !defined(__uxp__)
|
||||
#if !defined(USL) && !defined(__uxp__) && !defined(linux)
|
||||
#include <osfcn.h>
|
||||
#endif
|
||||
#endif /* __osf */
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#ifdef __osf__
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#if !defined (USL) && !defined(__uxp__)
|
||||
#if !defined (USL) && !defined(__uxp__) && !defined(linux)
|
||||
#include <osfcn.h>
|
||||
#endif
|
||||
#endif /* __osf__ */
|
||||
|
|
Loading…
Reference in a new issue