Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/lib/libc/musl/include/paths.h
6174 views
1
#ifndef _PATHS_H
2
#define _PATHS_H
3
4
#define _PATH_DEFPATH "/usr/local/bin:/bin:/usr/bin"
5
#define _PATH_STDPATH "/bin:/usr/bin:/sbin:/usr/sbin"
6
7
#define _PATH_BSHELL "/bin/sh"
8
#define _PATH_CONSOLE "/dev/console"
9
#define _PATH_DEVNULL "/dev/null"
10
#define _PATH_KLOG "/proc/kmsg"
11
#define _PATH_LASTLOG "/var/log/lastlog"
12
#define _PATH_MAILDIR "/var/mail"
13
#define _PATH_MAN "/usr/share/man"
14
#define _PATH_MNTTAB "/etc/fstab"
15
#define _PATH_MOUNTED "/etc/mtab"
16
#define _PATH_NOLOGIN "/etc/nologin"
17
#define _PATH_SENDMAIL "/usr/sbin/sendmail"
18
#define _PATH_SHADOW "/etc/shadow"
19
#define _PATH_SHELLS "/etc/shells"
20
#define _PATH_TTY "/dev/tty"
21
#define _PATH_UTMP "/dev/null/utmp"
22
#define _PATH_VI "/usr/bin/vi"
23
#define _PATH_WTMP "/dev/null/wtmp"
24
25
#define _PATH_DEV "/dev/"
26
#define _PATH_TMP "/tmp/"
27
#define _PATH_VARDB "/var/lib/misc/"
28
#define _PATH_VARRUN "/var/run/"
29
#define _PATH_VARTMP "/var/tmp/"
30
31
#endif
32
33