xref: /csrg-svn/include/paths.h (revision 49923)
138127Sbostic /*
238127Sbostic  * Copyright (c) 1989 The Regents of the University of California.
338127Sbostic  * All rights reserved.
438127Sbostic  *
542614Sbostic  * %sccs.include.redist.c%
638127Sbostic  *
7*49923Sbostic  *	@(#)paths.h	5.15 (Berkeley) 05/29/91
838127Sbostic  */
938127Sbostic 
1047774Sbostic #ifndef _PATHS_H_
1147774Sbostic #define	_PATHS_H_
1247774Sbostic 
1346662Sbostic /* Default search path. */
14*49923Sbostic #define	_PATH_DEFPATH	"/usr/bin:/bin"
1546580Sbostic 
1638127Sbostic #define	_PATH_BSHELL	"/bin/sh"
1738127Sbostic #define	_PATH_CONSOLE	"/dev/console"
1838127Sbostic #define	_PATH_CSHELL	"/bin/csh"
1946336Sbostic #define	_PATH_DEVDB	"/var/run/dev.db"
2038127Sbostic #define	_PATH_DEVNULL	"/dev/null"
2138127Sbostic #define	_PATH_DRUM	"/dev/drum"
2238127Sbostic #define	_PATH_KMEM	"/dev/kmem"
2343607Sbostic #define	_PATH_MAILDIR	"/var/mail"
2445119Sbostic #define	_PATH_MAN	"/usr/share/man"
2538127Sbostic #define	_PATH_MEM	"/dev/mem"
2640070Sbostic #define	_PATH_NOLOGIN	"/etc/nologin"
2738218Sbostic #define	_PATH_SENDMAIL	"/usr/sbin/sendmail"
2838127Sbostic #define	_PATH_TTY	"/dev/tty"
2938127Sbostic #define	_PATH_UNIX	"/vmunix"
3038127Sbostic #define	_PATH_VI	"/usr/bin/vi"
3146662Sbostic 
3246662Sbostic /* Provide trailing slash, since mostly used for building pathnames. */
3346662Sbostic #define	_PATH_DEV	"/dev/"
3446662Sbostic #define	_PATH_TMP	"/tmp/"
3546662Sbostic #define	_PATH_VARRUN	"/var/run/"
3646662Sbostic #define	_PATH_VARTMP	"/var/tmp/"
3747774Sbostic 
3847774Sbostic #endif /* !_PATHS_H_ */
39