1 /*
2  *	This version is for Apollo Domain/OS systems running BSD 4.3.
3  *	From: mmitchel@digi.lonestar.org (Mitch Mitchell)
4  *
5  *	Notice: If you use the ANSI compiler and have installed the SR10.3
6  *	ANSI stuff, you will have to #define SIGNAL_HANDLERS_ARE_VOID below.
7  *	(You should really do it in config.h though for portability! ++Kim)
8  *	From: rog@speech.kth.se (Roger Lindell)
9  */
10 
11 #include "s-bsd4-3.h"
12 
13 #define	SIGNAL_HANDLERS_ARE_VOID	/* ANSI compiler */
14 #define RESIZING
15 
16 /*
17  *	special sleep function that terminates following
18  *      the receipt of a signal  (needed for BSD Unix).
19  */
20 
21 #define HAVE_HARD_SLEEP
22 
23 /*
24  *	Specify where the Korne Shell is. (instead of Borne Shell)
25  *	The Bourne Shell is somewhat unreliable (at SR10.2).
26  */
27 
28 #ifdef  SHELL
29 #undef  SHELL
30 #endif
31 #define SHELL		"/bin/ksh"
32 
33 /*
34  *	Allow specification of file names to begin with a double
35  *      slash "//" so that Apollo node names of form "//node" can
36  *      occur in folder and file specifications.
37  */
38 
39 #define ALLOW_LEADING_DOUBLE_SLASH
40 
41 /*
42  *	Cause nnmaster to keep a CLIENT copy of the MASTER file to overcome
43  *	problems with network write access.
44  */
45 
46 #define APOLLO_DOMAIN_OS
47 
48 #undef NO_MEMMOVE
49