xref: /original-bsd/include/paths.h (revision c3e32dec)
1 /*
2  * Copyright (c) 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)paths.h	8.1 (Berkeley) 06/02/93
8  */
9 
10 #ifndef _PATHS_H_
11 #define	_PATHS_H_
12 
13 /* Default search path. */
14 #define	_PATH_DEFPATH	"/usr/bin:/bin"
15 /* All standard utilities path. */
16 #define	_PATH_STDPATH \
17 	"/usr/bin:/bin:/usr/sbin:/sbin:/usr/contrib/bin:/usr/old/bin"
18 
19 #define	_PATH_BSHELL	"/bin/sh"
20 #define	_PATH_CONSOLE	"/dev/console"
21 #define	_PATH_CSHELL	"/bin/csh"
22 #define	_PATH_DEVDB	"/var/run/dev.db"
23 #define	_PATH_DEVNULL	"/dev/null"
24 #define	_PATH_DRUM	"/dev/drum"
25 #define	_PATH_KMEM	"/dev/kmem"
26 #define	_PATH_MAILDIR	"/var/mail"
27 #define	_PATH_MAN	"/usr/share/man"
28 #define	_PATH_MEM	"/dev/mem"
29 #define	_PATH_NOLOGIN	"/etc/nologin"
30 #define	_PATH_SENDMAIL	"/usr/sbin/sendmail"
31 #define	_PATH_SHELLS	"/etc/shells"
32 #define	_PATH_TTY	"/dev/tty"
33 #define	_PATH_UNIX	"/vmunix"
34 #define	_PATH_VI	"/usr/bin/vi"
35 
36 /* Provide trailing slash, since mostly used for building pathnames. */
37 #define	_PATH_DEV	"/dev/"
38 #define	_PATH_TMP	"/tmp/"
39 #define	_PATH_VARDB	"/var/db/"
40 #define	_PATH_VARRUN	"/var/run/"
41 #define	_PATH_VARTMP	"/var/tmp/"
42 
43 #endif /* !_PATHS_H_ */
44