summaryrefslogtreecommitdiff
path: root/libphobos/libdruntime/core/sys/freebsd/stdlib.d
blob: bf93c3a451dbb689f09b2d0085f93d6261a8f79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
  * D header file for FreeBSD stdlib.h.
  *
  * Copyright: Copyright © 2021, The D Language Foundation
  * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
  * Authors: Iain Buclaw
  */
module core.sys.freebsd.stdlib;
public import core.sys.posix.stdlib;

version (FreeBSD):
extern (C):
nothrow:
@nogc:

const(char)* getprogname();
void setprogname(scope const char* name);