1*c55f7b38Sguenther /* $OpenBSD: sem.h,v 1.1 2015/09/14 12:08:49 guenther Exp $ */ 2*c55f7b38Sguenther /* 3*c55f7b38Sguenther * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org> 4*c55f7b38Sguenther * 5*c55f7b38Sguenther * Permission to use, copy, modify, and distribute this software for any 6*c55f7b38Sguenther * purpose with or without fee is hereby granted, provided that the above 7*c55f7b38Sguenther * copyright notice and this permission notice appear in all copies. 8*c55f7b38Sguenther * 9*c55f7b38Sguenther * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10*c55f7b38Sguenther * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*c55f7b38Sguenther * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12*c55f7b38Sguenther * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*c55f7b38Sguenther * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*c55f7b38Sguenther * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15*c55f7b38Sguenther * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16*c55f7b38Sguenther */ 17*c55f7b38Sguenther 18*c55f7b38Sguenther #ifndef _LIBC_SYS_SEM_H_ 19*c55f7b38Sguenther #define _LIBC_SYS_SEM_H_ 20*c55f7b38Sguenther 21*c55f7b38Sguenther #include_next <sys/sem.h> 22*c55f7b38Sguenther 23*c55f7b38Sguenther PROTO_DEPRECATED(semctl); 24*c55f7b38Sguenther PROTO_NORMAL(__semctl); 25*c55f7b38Sguenther PROTO_DEPRECATED(semget); 26*c55f7b38Sguenther PROTO_DEPRECATED(semop); 27*c55f7b38Sguenther 28*c55f7b38Sguenther #endif /* !_LIBC_SYS_SEM_H_ */ 29