138127Sbostic /* 238127Sbostic * Copyright (c) 1989 The Regents of the University of California. 338127Sbostic * All rights reserved. 438127Sbostic * 542614Sbostic * %sccs.include.redist.c% 638127Sbostic * 7*53279Sbostic * @(#)paths.h 5.17 (Berkeley) 04/29/92 838127Sbostic */ 938127Sbostic 1047774Sbostic #ifndef _PATHS_H_ 1147774Sbostic #define _PATHS_H_ 1247774Sbostic 1346662Sbostic /* Default search path. */ 1449923Sbostic #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" 28*53279Sbostic #define _PATH_SHELLS "/etc/shells" 2938127Sbostic #define _PATH_TTY "/dev/tty" 3038127Sbostic #define _PATH_UNIX "/vmunix" 3138127Sbostic #define _PATH_VI "/usr/bin/vi" 3246662Sbostic 3346662Sbostic /* Provide trailing slash, since mostly used for building pathnames. */ 3446662Sbostic #define _PATH_DEV "/dev/" 3546662Sbostic #define _PATH_TMP "/tmp/" 3653265Sbostic #define _PATH_VARDB "/var/db/" 3746662Sbostic #define _PATH_VARRUN "/var/run/" 3846662Sbostic #define _PATH_VARTMP "/var/tmp/" 3947774Sbostic 4047774Sbostic #endif /* !_PATHS_H_ */ 41