xref: /titanic_51/usr/src/head/paths.h (revision 686c0471389a2f92c1e43b38e1b97771bee482ab)
1*686c0471SRichard Lowe /*	$NetBSD: paths.h,v 1.39 2010/12/29 15:53:57 pooka Exp $	*/
2*686c0471SRichard Lowe 
3*686c0471SRichard Lowe /*
4*686c0471SRichard Lowe  * Copyright (c) 1989, 1993
5*686c0471SRichard Lowe  *	The Regents of the University of California.  All rights reserved.
6*686c0471SRichard Lowe  *
7*686c0471SRichard Lowe  * Redistribution and use in source and binary forms, with or without
8*686c0471SRichard Lowe  * modification, are permitted provided that the following conditions
9*686c0471SRichard Lowe  * are met:
10*686c0471SRichard Lowe  * 1. Redistributions of source code must retain the above copyright
11*686c0471SRichard Lowe  *    notice, this list of conditions and the following disclaimer.
12*686c0471SRichard Lowe  * 2. Redistributions in binary form must reproduce the above copyright
13*686c0471SRichard Lowe  *    notice, this list of conditions and the following disclaimer in the
14*686c0471SRichard Lowe  *    documentation and/or other materials provided with the distribution.
15*686c0471SRichard Lowe  * 3. Neither the name of the University nor the names of its contributors
16*686c0471SRichard Lowe  *    may be used to endorse or promote products derived from this software
17*686c0471SRichard Lowe  *    without specific prior written permission.
18*686c0471SRichard Lowe  *
19*686c0471SRichard Lowe  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20*686c0471SRichard Lowe  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21*686c0471SRichard Lowe  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*686c0471SRichard Lowe  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23*686c0471SRichard Lowe  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24*686c0471SRichard Lowe  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25*686c0471SRichard Lowe  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26*686c0471SRichard Lowe  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27*686c0471SRichard Lowe  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28*686c0471SRichard Lowe  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29*686c0471SRichard Lowe  * SUCH DAMAGE.
30*686c0471SRichard Lowe  *
31*686c0471SRichard Lowe  *	@(#)paths.h	8.1 (Berkeley) 6/2/93
32*686c0471SRichard Lowe  */
33*686c0471SRichard Lowe 
34*686c0471SRichard Lowe #ifndef _PATHS_H
35*686c0471SRichard Lowe #define	_PATHS_H
36*686c0471SRichard Lowe 
37*686c0471SRichard Lowe #ifdef __cplusplus
38*686c0471SRichard Lowe extern "C" {
39*686c0471SRichard Lowe #endif
40*686c0471SRichard Lowe 
41*686c0471SRichard Lowe #define	_PATH_DEFPATH	"/usr/ccs/bin:/usr/bin:/bin"
42*686c0471SRichard Lowe #define	_PATH_STDPATH   _PATH_STDPATH ":/usr/sbin:/sbin"
43*686c0471SRichard Lowe 
44*686c0471SRichard Lowe #define	_PATH_BPF	"/dev/bpf"
45*686c0471SRichard Lowe #define	_PATH_BSHELL	"/usr/bin/sh"
46*686c0471SRichard Lowe #define	_PATH_CONSOLE	"/dev/console"
47*686c0471SRichard Lowe #define	_PATH_CSHELL	"/usr/bin/csh"
48*686c0471SRichard Lowe #define	_PATH_DEVNULL	"/dev/null"
49*686c0471SRichard Lowe #define	_PATH_FTPUSERS	"/etc/ftpusers"
50*686c0471SRichard Lowe #define	_PATH_KMEM	"/dev/kmem"
51*686c0471SRichard Lowe #define	_PATH_LOCALE	"/usr/share/locale"
52*686c0471SRichard Lowe #define	_PATH_MAILDIR	"/var/mail"
53*686c0471SRichard Lowe #define	_PATH_MAN	"/usr/share/man"
54*686c0471SRichard Lowe #define	_PATH_MEM	"/dev/mem"
55*686c0471SRichard Lowe #define	_PATH_NOLOGIN	"/etc/nologin"
56*686c0471SRichard Lowe #define	_PATH_RANDOM	"/dev/random"
57*686c0471SRichard Lowe #define	_PATH_SENDMAIL	"/usr/sbin/sendmail"
58*686c0471SRichard Lowe #define	_PATH_SHELLS	"/etc/shells"
59*686c0471SRichard Lowe #define	_PATH_TTY	"/dev/tty"
60*686c0471SRichard Lowe #define	_PATH_URANDOM	"/dev/urandom"
61*686c0471SRichard Lowe #define	_PATH_VI	"/usr/bin/vi"
62*686c0471SRichard Lowe 
63*686c0471SRichard Lowe /*
64*686c0471SRichard Lowe  * Provide trailing slash, since mostly used for building pathnames.
65*686c0471SRichard Lowe  */
66*686c0471SRichard Lowe #define	_PATH_DEV	"/dev/"
67*686c0471SRichard Lowe #define	_PATH_DEV_PTS	"/dev/pts/"
68*686c0471SRichard Lowe #define	_PATH_TMP	"/tmp/"
69*686c0471SRichard Lowe #define	_PATH_VARDB	"/var/db/"
70*686c0471SRichard Lowe #define	_PATH_VARRUN	"/var/run/"
71*686c0471SRichard Lowe #define	_PATH_VARTMP	"/var/tmp/"
72*686c0471SRichard Lowe 
73*686c0471SRichard Lowe 
74*686c0471SRichard Lowe #ifdef __cplusplus
75*686c0471SRichard Lowe }
76*686c0471SRichard Lowe #endif
77*686c0471SRichard Lowe #endif /* !_PATHS_H */
78