1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-15 07:54:13 +00:00

Solaris has moved from being SYSVONLY to not so. We still need sys/fcntl.h though.

modified:   src/ldsout.c
This commit is contained in:
Nick Briggs 2020-07-12 18:10:24 -07:00
parent 82090e5c3d
commit ffc8f06fc3

View File

@ -27,9 +27,9 @@ static char *id = "$Id: ldsout.c,v 1.4 2001/12/26 22:17:02 sybalsky Exp $ Copyri
#include <sys/stat.h>
#include <errno.h>
#ifdef SYSVONLY
#if defined(SYSVONLY) || defined(OS5)
#include <sys/fcntl.h>
#endif /* SYSVONLY */
#endif /* SYSVONLY || OS5 */
#ifdef DOS
#include <fcntl.h>