1686c0471SRichard Lowe /* $NetBSD: paths.h,v 1.39 2010/12/29 15:53:57 pooka Exp $ */ 2686c0471SRichard Lowe 3686c0471SRichard Lowe /* 4686c0471SRichard Lowe * Copyright (c) 1989, 1993 5686c0471SRichard Lowe * The Regents of the University of California. All rights reserved. 6686c0471SRichard Lowe * 7686c0471SRichard Lowe * Redistribution and use in source and binary forms, with or without 8686c0471SRichard Lowe * modification, are permitted provided that the following conditions 9686c0471SRichard Lowe * are met: 10686c0471SRichard Lowe * 1. Redistributions of source code must retain the above copyright 11686c0471SRichard Lowe * notice, this list of conditions and the following disclaimer. 12686c0471SRichard Lowe * 2. Redistributions in binary form must reproduce the above copyright 13686c0471SRichard Lowe * notice, this list of conditions and the following disclaimer in the 14686c0471SRichard Lowe * documentation and/or other materials provided with the distribution. 15686c0471SRichard Lowe * 3. Neither the name of the University nor the names of its contributors 16686c0471SRichard Lowe * may be used to endorse or promote products derived from this software 17686c0471SRichard Lowe * without specific prior written permission. 18686c0471SRichard Lowe * 19686c0471SRichard Lowe * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20686c0471SRichard Lowe * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21686c0471SRichard Lowe * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22686c0471SRichard Lowe * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23686c0471SRichard Lowe * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24686c0471SRichard Lowe * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25686c0471SRichard Lowe * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26686c0471SRichard Lowe * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27686c0471SRichard Lowe * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28686c0471SRichard Lowe * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29686c0471SRichard Lowe * SUCH DAMAGE. 30686c0471SRichard Lowe * 31686c0471SRichard Lowe * @(#)paths.h 8.1 (Berkeley) 6/2/93 32686c0471SRichard Lowe */ 33686c0471SRichard Lowe 34686c0471SRichard Lowe #ifndef _PATHS_H 35686c0471SRichard Lowe #define _PATHS_H 36686c0471SRichard Lowe 37686c0471SRichard Lowe #ifdef __cplusplus 38686c0471SRichard Lowe extern "C" { 39686c0471SRichard Lowe #endif 40686c0471SRichard Lowe 41686c0471SRichard Lowe #define _PATH_DEFPATH "/usr/ccs/bin:/usr/bin:/bin" 42*46eadd8fSAndrzej Szeszo #define _PATH_STDPATH _PATH_DEFPATH ":/usr/sbin:/sbin" 43686c0471SRichard Lowe 44686c0471SRichard Lowe #define _PATH_BPF "/dev/bpf" 45686c0471SRichard Lowe #define _PATH_BSHELL "/usr/bin/sh" 46686c0471SRichard Lowe #define _PATH_CONSOLE "/dev/console" 47686c0471SRichard Lowe #define _PATH_CSHELL "/usr/bin/csh" 48686c0471SRichard Lowe #define _PATH_DEVNULL "/dev/null" 49686c0471SRichard Lowe #define _PATH_FTPUSERS "/etc/ftpusers" 50686c0471SRichard Lowe #define _PATH_KMEM "/dev/kmem" 51686c0471SRichard Lowe #define _PATH_LOCALE "/usr/share/locale" 52686c0471SRichard Lowe #define _PATH_MAILDIR "/var/mail" 53686c0471SRichard Lowe #define _PATH_MAN "/usr/share/man" 54686c0471SRichard Lowe #define _PATH_MEM "/dev/mem" 55686c0471SRichard Lowe #define _PATH_NOLOGIN "/etc/nologin" 56686c0471SRichard Lowe #define _PATH_RANDOM "/dev/random" 57686c0471SRichard Lowe #define _PATH_SENDMAIL "/usr/sbin/sendmail" 58686c0471SRichard Lowe #define _PATH_SHELLS "/etc/shells" 59686c0471SRichard Lowe #define _PATH_TTY "/dev/tty" 60686c0471SRichard Lowe #define _PATH_URANDOM "/dev/urandom" 61686c0471SRichard Lowe #define _PATH_VI "/usr/bin/vi" 62686c0471SRichard Lowe 63686c0471SRichard Lowe /* 64686c0471SRichard Lowe * Provide trailing slash, since mostly used for building pathnames. 65686c0471SRichard Lowe */ 66686c0471SRichard Lowe #define _PATH_DEV "/dev/" 67686c0471SRichard Lowe #define _PATH_DEV_PTS "/dev/pts/" 68686c0471SRichard Lowe #define _PATH_TMP "/tmp/" 69686c0471SRichard Lowe #define _PATH_VARDB "/var/db/" 70686c0471SRichard Lowe #define _PATH_VARRUN "/var/run/" 71686c0471SRichard Lowe #define _PATH_VARTMP "/var/tmp/" 72686c0471SRichard Lowe 73686c0471SRichard Lowe 74686c0471SRichard Lowe #ifdef __cplusplus 75686c0471SRichard Lowe } 76686c0471SRichard Lowe #endif 77686c0471SRichard Lowe #endif /* !_PATHS_H */ 78