60 lines
2.2 KiB
C
60 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 1989 The Regents of the University of California.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms are permitted
|
|
* provided that the above copyright notice and this paragraph are
|
|
* duplicated in all such forms and that any documentation,
|
|
* advertising materials, and other materials related to such
|
|
* distribution and use acknowledge that the software was developed
|
|
* by the University of California, Berkeley. The name of the
|
|
* University may not be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
#define _PATH_BSHELL "/bin/sh"
|
|
#define _PATH_CSHELL "/bin/csh"
|
|
#define _PATH_CP "/bin/cp"
|
|
#define _PATH_ECHO "/bin/echo"
|
|
#define _PATH_MORE "/bin/more"
|
|
#define _PATH_RSH "/bin/rsh"
|
|
#define _PATH_VI "/bin/vi"
|
|
#define _PATH_CORE "/core"
|
|
#define _PATH_DEV "/dev/"
|
|
#define _PATH_CONSOLE "/dev/console"
|
|
#define _PATH_DEVNULL "/dev/null"
|
|
#define _PATH_TTY "/dev/tty"
|
|
#define _PATH_MEM "/dev/mem"
|
|
#define _PATH_SWAP "/dev/swap"
|
|
#define _PATH_LOCALTIME "/etc/localtime"
|
|
#define _PATH_MOTD "/etc/motd"
|
|
#define _PATH_NOLOGIN "/etc/nologin"
|
|
#define _PATH_USRLIB "/lib/"
|
|
#define _PATH_CTIMED "/libexec/ctimed"
|
|
#define _PATH_LOCALLIB "/local/lib/"
|
|
#define _PATH_SBIN "/sbin/"
|
|
#define _PATH_USRSBIN "/sbin/"
|
|
#define _PATH_SENDMAIL "/sbin/sendmail"
|
|
#define _PATH_SHARE "/share/"
|
|
#define _PATH_ZONEINFO "/share/zoneinfo" /* Time zone object file directory */
|
|
#define _PATH_TMP "/tmp/"
|
|
#define _PATH_USRTMP "/tmp/"
|
|
#define _PATH_LASTLOG "/var/log/lastlog"
|
|
#define _PATH_MESSAGES "/var/log/messages"
|
|
#define _PATH_WTMP "/var/log/wtmp"
|
|
#define _PATH_MAIL "/var/mail/"
|
|
#define _PATH_VARRUN "/var/run/"
|
|
#define _PATH_DEVDB "/var/run/dev"
|
|
#define _PATH_UTMP "/var/run/utmp"
|
|
#define _PATH_ARTMP "/tmp/ar.XXXXXX"
|
|
#define _PATH_RANTMP "/tmp/ranlib.XXXXXX"
|
|
|
|
#define _PATH_STDPATH "/bin"
|
|
#define _PATH_SYSPATH "/bin:/sbin:/local"
|
|
#define _PATH_MAN "/share/man:/local/man"
|
|
#define _PATH_LOCALMAN "/local/man"
|
|
|
|
#define _PATH_HUSHLOGIN ".hushlogin"
|