xref: /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/freebsd/unistd.d (revision 0a3071956a3a9fdebdbf7f338cf2d439b45fc728)
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  +/
10 module core.sys.freebsd.unistd;
11 
12 public import core.sys.posix.unistd;
13 
14 version (FreeBSD):
15 extern(C):
16 @nogc:
17 nothrow:
18 
19 int getosreldate() pure @trusted;
20