diff options
author | marcel <marcel@FreeBSD.org> | 1999-10-03 15:12:26 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-10-03 15:12:26 +0000 |
commit | 9b3d962f7318937f8e53d748ec0318074c2c7ed4 (patch) | |
tree | 57d45416f3ae62515a1d67ef3c5d043d4150e690 /include | |
parent | 5992d5ff2114d36a19f65d124093d0cc8b5d8e6b (diff) | |
download | FreeBSD-src-9b3d962f7318937f8e53d748ec0318074c2c7ed4.zip FreeBSD-src-9b3d962f7318937f8e53d748ec0318074c2c7ed4.tar.gz |
Link ucontext.h to sys/ucontext.h
Pointed out by: bde
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 3 | ||||
-rw-r--r-- | include/ucontext.h | 36 |
2 files changed, 2 insertions, 37 deletions
diff --git a/include/Makefile b/include/Makefile index 8d4cfde..088738d 100644 --- a/include/Makefile +++ b/include/Makefile @@ -38,7 +38,8 @@ PFILES= mqueue.h sched.h semaphore.h # aio.h # Only for default SHARED=copies case SFILES= soundcard.h -LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h termios.h +LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h \ + termios.h ucontext.h LDIRS= cam msdosfs net netatalk netatm netinet netipx netkey netns nfs \ pccard posix4 sys vm diff --git a/include/ucontext.h b/include/ucontext.h deleted file mode 100644 index f868980..0000000 --- a/include/ucontext.h +++ /dev/null @@ -1,36 +0,0 @@ -/*- - * Copyright (c) 1999 Marcel Moolenaar - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer - * in this position and unchanged. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR - * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, - * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ - */ - -#ifndef _UCONTEXT_H_ -#define _UCONTEXT_H_ 1 - -#include <sys/ucontext.h> - -#endif /* _UCONTEXT_H_ */ |