summaryrefslogtreecommitdiff
path: root/include/paths.h
blob: 95b63c58bf50d22a8fdaa4063ea34f628b8170c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* paths.h <ndf@linux.mit.edu> */

#ifndef ___PATHS_H
#define	___PATHS_H


#define	_PATH_CONSOLE	"/dev/console"
#define	_PATH_TTY	"/dev/tty"
#define	_PATH_NOLOGIN	"/etc/nologin"
#define	_PATH_LOGIN	"/bin/login"
#define	_PATH_BSHELL	"/bin/sh"
#define _PATH_UTMP	"/var/run/utmp"
#define _PATH_WTMP	"/var/log/wtmp"
#define	_PATH_DEFPATH	"/bin:/usr/bin:/usr/local/bin:."
#define	_PATH_DEV	"/dev/"
#define _PATH_DEVNULL	"/dev/null"
#define	_PATH_TMP	"/tmp/"
#define _PATH_LASTLOG	"/var/log/lastlog"
#define _PATH_LOCALE	"/usr/lib/locale"
#define _PATH_VARRUN	"/var/run/"

#endif /* __PATHS_H */