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