138127Sbostic /* 238127Sbostic * Copyright (c) 1989 The Regents of the University of California. 338127Sbostic * All rights reserved. 438127Sbostic * 542614Sbostic * %sccs.include.redist.c% 638127Sbostic * 7*59695Sbostic * @(#)paths.h 5.18 (Berkeley) 05/03/93 838127Sbostic */ 938127Sbostic 1047774Sbostic #ifndef _PATHS_H_ 1147774Sbostic #define _PATHS_H_ 1247774Sbostic 1346662Sbostic /* Default search path. */ 1449923Sbostic #define _PATH_DEFPATH "/usr/bin:/bin" 15*59695Sbostic /* All standard utilities path. */ 16*59695Sbostic #define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin" 1746580Sbostic 1838127Sbostic #define _PATH_BSHELL "/bin/sh" 1938127Sbostic #define _PATH_CONSOLE "/dev/console" 2038127Sbostic #define _PATH_CSHELL "/bin/csh" 2146336Sbostic #define _PATH_DEVDB "/var/run/dev.db" 2238127Sbostic #define _PATH_DEVNULL "/dev/null" 2338127Sbostic #define _PATH_DRUM "/dev/drum" 2438127Sbostic #define _PATH_KMEM "/dev/kmem" 2543607Sbostic #define _PATH_MAILDIR "/var/mail" 2645119Sbostic #define _PATH_MAN "/usr/share/man" 2738127Sbostic #define _PATH_MEM "/dev/mem" 2840070Sbostic #define _PATH_NOLOGIN "/etc/nologin" 2938218Sbostic #define _PATH_SENDMAIL "/usr/sbin/sendmail" 3053279Sbostic #define _PATH_SHELLS "/etc/shells" 3138127Sbostic #define _PATH_TTY "/dev/tty" 3238127Sbostic #define _PATH_UNIX "/vmunix" 3338127Sbostic #define _PATH_VI "/usr/bin/vi" 3446662Sbostic 3546662Sbostic /* Provide trailing slash, since mostly used for building pathnames. */ 3646662Sbostic #define _PATH_DEV "/dev/" 3746662Sbostic #define _PATH_TMP "/tmp/" 3853265Sbostic #define _PATH_VARDB "/var/db/" 3946662Sbostic #define _PATH_VARRUN "/var/run/" 4046662Sbostic #define _PATH_VARTMP "/var/tmp/" 4147774Sbostic 4247774Sbostic #endif /* !_PATHS_H_ */ 43