aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.posix/posix.ccm
blob: c49a992b49f43bfd2bd3a28a32146e6938d6acb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// This source code is released into the public domain.
module;

export module nihil.posix;

import nihil.error;

export import :argv;
export import :ensure_dir;
export import :execl;
export import :execlp;
export import :execshell;
export import :execv;
export import :execvp;
export import :fd;
export import :fexecv;
export import :fexecvp;
export import :find_in_path;
export import :getenv;
export import :open;
export import :open_in_path;
export import :process;
export import :read_file;
export import :rename;
export import :spawn;
export import :stat;
export import :tempfile;
export import :write_file;