1//Written in the D programming language
2
3/++
4    D header file for FreeBSD's extensions to POSIX's unistd.h.
5
6    Copyright: Copyright 2018
7    License:   $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
8    Authors:   $(HTTP jmdavisprog.com, Jonathan M Davis)
9 +/
10module core.sys.freebsd.unistd;
11
12public import core.sys.posix.unistd;
13
14version (FreeBSD):
15extern(C):
16@nogc:
17nothrow:
18
19int getosreldate() pure @trusted;
20