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