2001-03-05 22:29:24 +01:00
|
|
|
/* paths.h
|
|
|
|
|
2003-09-25 05:46:20 +02:00
|
|
|
Copyright 2001, 2002, 2003 Red Hat, Inc.
|
2001-03-05 22:29:24 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifndef _PATHS_H_
|
|
|
|
#define _PATHS_H_
|
|
|
|
|
|
|
|
#define _PATH_BSHELL "/bin/sh"
|
2003-09-25 05:46:20 +02:00
|
|
|
#define _PATH_CSHELL "/bin/csh"
|
|
|
|
#define _PATH_DEFPATH "/bin"
|
|
|
|
#define _PATH_DEV "/dev/"
|
|
|
|
#define _PATH_DEVNULL "/dev/null"
|
|
|
|
#define _PATH_LASTLOG "/var/log/lastlog"
|
|
|
|
#define _PATH_MAN "/usr/share/man"
|
|
|
|
#define _PATH_MEM "/dev/mem"
|
|
|
|
#define _PATH_STDPATH "/bin:/usr/sbin:/sbin"
|
|
|
|
#define _PATH_TMP "/tmp/"
|
|
|
|
#define _PATH_TTY "/dev/tty"
|
2000-02-17 20:38:33 +01:00
|
|
|
#define _PATH_UTMP "/var/run/utmp"
|
2003-09-25 05:46:20 +02:00
|
|
|
#define _PATH_VARRUN "/var/run/"
|
|
|
|
#define _PATH_VI "/bin/vi"
|
2000-02-17 20:38:33 +01:00
|
|
|
#define _PATH_WTMP "/var/log/wtmp"
|
2003-09-10 17:51:59 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif /* _PATHS_H_ */
|