File: paths.h

package info (click to toggle)
linux86 0.16.21-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,072 kB
  • sloc: ansic: 66,757; asm: 6,154; makefile: 1,374; sh: 703
file content (21 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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"

#endif /* __PATHS_H */