This commit is contained in:
seta75D
2021-10-11 18:20:23 -03:00
commit 2e8a93c394
13448 changed files with 2891753 additions and 0 deletions

10
5include/sys/Makefile Normal file
View File

@@ -0,0 +1,10 @@
# @(#)Makefile 1.1 92/07/30 SMI
#
H = fcntl.h
all: $H
clean:
# Install is done by parent makefile
install:

12
5include/sys/fcntl.h Normal file
View File

@@ -0,0 +1,12 @@
/* @(#)fcntl.h 1.1 92/07/30 SMI */
#ifndef __sys_fcntl_h
#define __sys_fcntl_h
#include <sys/fcntlcom.h>
#ifndef _POSIX_SOURCE
#define O_NDELAY _FNBIO /* Non-blocking I/O (S5 style) */
#endif
#endif /* !__sys_fcntl_h */