1/**
2  * D header file for OpenBSD unistd.h.
3  *
4  * Copyright: Copyright �� 2021, The D Language Foundation
5  * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
6  * Authors: Brian Callahan
7  */
8module core.sys.openbsd.unistd;
9
10version (OpenBSD):
11extern (C):
12nothrow:
13@nogc:
14
15int getentropy(void*, size_t);
16int pledge(const scope char*, const scope char*);
17int unveil(const scope char*, const scope char*);
18