xref: /freebsd/usr.bin/vi/pathnames.h (revision 7bd6fde3)
1 /* @(#)pathnames.h.in	8.4 (Berkeley) 6/26/96 */
2 /* $FreeBSD$ */
3 
4 /* Read standard system paths first. */
5 #include <paths.h>
6 
7 #ifndef	_PATH_BSHELL
8 #define	_PATH_BSHELL	"/bin/sh"
9 #endif
10 
11 #ifndef	_PATH_EXRC
12 #define	_PATH_EXRC	".exrc"
13 #endif
14 
15 #ifndef	_PATH_MSGCAT
16 #define _PATH_MSGCAT    "/usr/share/vi/catalog/"
17 #endif
18 
19 #ifndef	_PATH_NEXRC
20 #define	_PATH_NEXRC	".nexrc"
21 #endif
22 
23 #ifndef	_PATH_PRESERVE
24 #define	_PATH_PRESERVE	"/var/tmp/vi.recover"
25 #endif
26 
27 #ifndef _PATH_SYSV_PTY
28 #define	_PATH_SYSV_PTY	"/dev/ptmx"
29 #endif
30 
31 #ifndef	_PATH_SENDMAIL
32 #define	_PATH_SENDMAIL	"/usr/sbin/sendmail"
33 #endif
34 
35 #ifndef	_PATH_SYSEXRC
36 #define	_PATH_SYSEXRC	"/etc/vi.exrc"
37 #endif
38 
39 #ifndef	_PATH_TAGS
40 #define	_PATH_TAGS	"tags"
41 #endif
42 
43 #ifndef	_PATH_TMP
44 #define	_PATH_TMP	"/tmp"
45 #endif
46 
47 #ifndef	_PATH_TTY
48 #define	_PATH_TTY	"/dev/tty"
49 #endif
50