aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/vi/pathnames.h
blob: b5e1a9e5cad1e4fa00c379cce7f48cdbac9fceda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* @(#)pathnames.h.in	8.4 (Berkeley) 6/26/96 */
/* $FreeBSD: src/usr.bin/vi/pathnames.h,v 1.3.34.1.6.1 2010/12/21 17:09:25 kensmith Exp $ */

/* Read standard system paths first. */
#include <paths.h>

#ifndef	_PATH_BSHELL
#define	_PATH_BSHELL	"/bin/sh"
#endif

#ifndef	_PATH_EXRC
#define	_PATH_EXRC	".exrc"
#endif

#ifndef	_PATH_MSGCAT
#define _PATH_MSGCAT    "/usr/share/vi/catalog/"
#endif

#ifndef	_PATH_NEXRC
#define	_PATH_NEXRC	".nexrc"
#endif

#ifndef	_PATH_PRESERVE
#define	_PATH_PRESERVE	"/var/tmp/vi.recover"
#endif

#ifndef _PATH_SYSV_PTY
#define	_PATH_SYSV_PTY	"/dev/ptmx"
#endif

#ifndef	_PATH_SENDMAIL
#define	_PATH_SENDMAIL	"/usr/sbin/sendmail"
#endif

#ifndef	_PATH_SYSEXRC
#define	_PATH_SYSEXRC	"/etc/vi.exrc"
#endif

#ifndef	_PATH_TAGS
#define	_PATH_TAGS	"tags"
#endif

#ifndef	_PATH_TMP
#define	_PATH_TMP	"/tmp"
#endif

#ifndef	_PATH_TTY
#define	_PATH_TTY	"/dev/tty"
#endif