This commit is contained in:
seta75D
2021-10-11 18:37:13 -03:00
commit ff309bfe1c
14130 changed files with 3180272 additions and 0 deletions

12
ucbinclude/sys/Makefile Normal file
View File

@@ -0,0 +1,12 @@
#
# @(#)Makefile 1.1 94/10/31 SMI
#
HFILES = fcntl.h
all: $(HFILES)
clean:
install: $(HFILES)
install -d -o bin -m 755 ${DESTDIR}/usr/include/sys
install -m 444 $(HFILES) $(DESTDIR)/usr/include/sys

10
ucbinclude/sys/fcntl.h Normal file
View File

@@ -0,0 +1,10 @@
/* @(#)fcntl.h 1.1 94/10/31 SMI */
#ifndef _FCNTL_
#define _FCNTL_
#include <sys/fcntlcom.h>
#define O_NDELAY _FNDELAY /* Non-blocking I/O (4.2 style) */
#endif /* !_FCNTL_ */