diff options
Diffstat (limited to 'usr/src/ucbhead')
-rw-r--r-- | usr/src/ucbhead/Makefile | 68 | ||||
-rw-r--r-- | usr/src/ucbhead/sys/file.h | 4 |
2 files changed, 72 insertions, 0 deletions
diff --git a/usr/src/ucbhead/Makefile b/usr/src/ucbhead/Makefile new file mode 100644 index 0000000000..ef9fc7f2fe --- /dev/null +++ b/usr/src/ucbhead/Makefile @@ -0,0 +1,68 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License, Version 1.0 only +# (the "License"). You may not use this file except in compliance +# with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# +# +# Copyright 1989-2003 Sun Microsystems, Inc. All rights reserved. +# Use is subject to license terms. +# +# ucbhead/Makefile +# +# include global definitions +include ../Makefile.master + +LN= ln + +HDRS= curses.h dbm.h setjmp.h sgtty.h signal.h stdio.h strings.h unistd.h + +SYSHDRS= \ +dir.h fcntl.h file.h ioctl.h \ +param.h resource.h rusage.h signal.h \ +sysmacros.h ttychars.h types.h vfs.h \ +wait.h + +ROOTHDRS= $(HDRS:%=$(ROOT)/usr/ucbinclude/%) \ + $(SYSHDRS:%=$(ROOT)/usr/ucbinclude/sys/%) + +DIRS= sys +ROOTDIRS= $(ROOT)/usr/ucbinclude $(DIRS:%=$(ROOT)/usr/ucbinclude/%) + +FCNTLH= $(ROOT)/usr/ucbinclude/fcntl.h +SYSFCNTLH= $(ROOT)/usr/ucbinclude/sys/fcntl.h + +INS.FCNTLH= $(RM) $@; $(SYMLINK) sys/fcntl.h $@ + +# install rules +$(ROOT)/usr/ucbinclude/sys/%: sys/% + $(INS.file) + +$(ROOT)/usr/ucbinclude/%: % + $(INS.file) + +.KEEP_STATE: + +install_h: $(ROOTDIRS) $(ROOTHDRS) $(FCNTLH) + +$(FCNTLH): $(SYSFCNTLH) + $(INS.FCNTLH) + +$(ROOTDIRS): + $(INS.dir) + diff --git a/usr/src/ucbhead/sys/file.h b/usr/src/ucbhead/sys/file.h index 10863380dd..152141fcd7 100644 --- a/usr/src/ucbhead/sys/file.h +++ b/usr/src/ucbhead/sys/file.h @@ -77,6 +77,10 @@ typedef struct file #include <sys/fcntl.h> #endif +#if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) +int flock(int, int); +#endif + /* flags - see also fcntl.h */ #ifndef FOPEN |