blob: f6a35a891102580fd80e09208a72d3d174b54271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* D header file for OpenBSD pwd.h.
*
* Copyright: Copyright © 2022, The D Language Foundation
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Brian Callahan
*/
module core.sys.openbsd.pwd;
version (OpenBSD):
extern (C):
nothrow:
@nogc:
public import core.sys.posix.pwd;
import core.sys.posix.sys.types : uid_t;
passwd* getpwnam_shadow(scope const char*);
passwd* getpwuid_shadow(uid_t);
|