BSD 4_3 development
[unix-history] / usr / contrib / jove / tune.template
CommitLineData
fb51ca13
C
1/*************************************************************************
2 * This program is copyright (C) 1985, 1986 by Jonathan Payne. It is *
3 * provided to you without charge for use only on a licensed Unix *
4 * system. You may copy JOVE provided that this notice is included with *
5 * the copy. You may not sell copies of this program or versions *
6 * modified for use on microcomputer systems, unless the copies are *
7 * included with a Unix system distribution and the source is provided. *
8 *************************************************************************/
9
10#define NOEXTERNS
11
12#include "tune.h"
13
14char *TMP_DIR = "TMPDIR",
15 *REC_DIR = "RECDIR",
16 *TMPFILE = "TMPDIR/joveXXXXXX", /* Buffer lines go here. */
17 *RECFILE = "TMPDIR/jrecXXXXXX", /* Line pointers go here. */
18 *REC_BASE = "jrec",
19 *RECOVER = "BINDIR/recover",
20 *CMD_DB = "LIBDIR/cmds.doc",
21 /* Copy of "cmds.doc" lives in the doc subdirectory */
22
23 *JOVERC = "LIBDIR/.joverc",
24
25 *PORTSRV = "LIBDIR/portsrv",
26
27 Shell[40] = "SHELL",
28 ShFlags[16] = "-c";