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