138127Sbostic /* 2*61068Sbostic * Copyright (c) 1989, 1993 3*61068Sbostic * The Regents of the University of California. All rights reserved. 438127Sbostic * 542614Sbostic * %sccs.include.redist.c% 638127Sbostic * 7*61068Sbostic * @(#)paths.h 8.1 (Berkeley) 06/02/93 838127Sbostic */ 938127Sbostic 1047774Sbostic #ifndef _PATHS_H_ 1147774Sbostic #define _PATHS_H_ 1247774Sbostic 1346662Sbostic /* Default search path. */ 1449923Sbostic #define _PATH_DEFPATH "/usr/bin:/bin" 1559695Sbostic /* All standard utilities path. */ 1659767Sbostic #define _PATH_STDPATH \ 1759767Sbostic "/usr/bin:/bin:/usr/sbin:/sbin:/usr/contrib/bin:/usr/old/bin" 1846580Sbostic 1938127Sbostic #define _PATH_BSHELL "/bin/sh" 2038127Sbostic #define _PATH_CONSOLE "/dev/console" 2138127Sbostic #define _PATH_CSHELL "/bin/csh" 2246336Sbostic #define _PATH_DEVDB "/var/run/dev.db" 2338127Sbostic #define _PATH_DEVNULL "/dev/null" 2438127Sbostic #define _PATH_DRUM "/dev/drum" 2538127Sbostic #define _PATH_KMEM "/dev/kmem" 2643607Sbostic #define _PATH_MAILDIR "/var/mail" 2745119Sbostic #define _PATH_MAN "/usr/share/man" 2838127Sbostic #define _PATH_MEM "/dev/mem" 2940070Sbostic #define _PATH_NOLOGIN "/etc/nologin" 3038218Sbostic #define _PATH_SENDMAIL "/usr/sbin/sendmail" 3153279Sbostic #define _PATH_SHELLS "/etc/shells" 3238127Sbostic #define _PATH_TTY "/dev/tty" 3338127Sbostic #define _PATH_UNIX "/vmunix" 3438127Sbostic #define _PATH_VI "/usr/bin/vi" 3546662Sbostic 3646662Sbostic /* Provide trailing slash, since mostly used for building pathnames. */ 3746662Sbostic #define _PATH_DEV "/dev/" 3846662Sbostic #define _PATH_TMP "/tmp/" 3953265Sbostic #define _PATH_VARDB "/var/db/" 4046662Sbostic #define _PATH_VARRUN "/var/run/" 4146662Sbostic #define _PATH_VARTMP "/var/tmp/" 4247774Sbostic 4347774Sbostic #endif /* !_PATHS_H_ */ 44