Init
This commit is contained in:
12
ucbinclude/sys/Makefile
Normal file
12
ucbinclude/sys/Makefile
Normal 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
10
ucbinclude/sys/fcntl.h
Normal 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_ */
|
||||
Reference in New Issue
Block a user