xref: /csrg-svn/include/paths.h (revision 46662)
138127Sbostic /*
238127Sbostic  * Copyright (c) 1989 The Regents of the University of California.
338127Sbostic  * All rights reserved.
438127Sbostic  *
542614Sbostic  * %sccs.include.redist.c%
638127Sbostic  *
7*46662Sbostic  *	@(#)paths.h	5.13 (Berkeley) 02/25/91
838127Sbostic  */
938127Sbostic 
10*46662Sbostic /* Default search path. */
1146616Sbostic #define	_PATH_DEFPATH	"/bin:/usr/bin:"
1246580Sbostic 
1338127Sbostic #define	_PATH_BSHELL	"/bin/sh"
1438127Sbostic #define	_PATH_CONSOLE	"/dev/console"
1538127Sbostic #define	_PATH_CSHELL	"/bin/csh"
1646336Sbostic #define	_PATH_DEVDB	"/var/run/dev.db"
1738127Sbostic #define	_PATH_DEVNULL	"/dev/null"
1838127Sbostic #define	_PATH_DRUM	"/dev/drum"
1938127Sbostic #define	_PATH_KMEM	"/dev/kmem"
2043607Sbostic #define	_PATH_MAILDIR	"/var/mail"
2145119Sbostic #define	_PATH_MAN	"/usr/share/man"
2238127Sbostic #define	_PATH_MEM	"/dev/mem"
2340070Sbostic #define	_PATH_NOLOGIN	"/etc/nologin"
2438218Sbostic #define	_PATH_SENDMAIL	"/usr/sbin/sendmail"
2538127Sbostic #define	_PATH_TTY	"/dev/tty"
2638127Sbostic #define	_PATH_UNIX	"/vmunix"
2738127Sbostic #define	_PATH_VI	"/usr/bin/vi"
28*46662Sbostic 
29*46662Sbostic /* Provide trailing slash, since mostly used for building pathnames. */
30*46662Sbostic #define	_PATH_DEV	"/dev/"
31*46662Sbostic #define	_PATH_TMP	"/tmp/"
32*46662Sbostic #define	_PATH_VARRUN	"/var/run/"
33*46662Sbostic #define	_PATH_VARTMP	"/var/tmp/"
34