1 /*
2  * Copyright (c) 1992-1998 Michael A. Cooper.
3  * This software may be freely used and distributed provided it is not
4  * sold for profit or used in part or in whole for commercial gain
5  * without prior written agreement, and the author is credited
6  * appropriately.
7  */
8 
9 /*
10  * $Id: rdistpaths.h,v 6.9 1998/11/10 04:23:08 mcooper Exp $
11  * @(#)paths.h
12  */
13 
14 #ifndef __RDISTPATHS_H__
15 #define __RDISTPATHS_H__
16 /*
17  * This file should be used for those systems without any
18  * <paths.h> or those with an incomplete version.
19  */
20 
21 #if	defined(HAVE_PATHS_H)
22 /*
23  * Let the system's paths.h override what we have.
24  */
25 #include <paths.h>
26 #endif	/* HAVE_PATHS_H */
27 
28 #ifndef _PATH_SENDMAIL
29 #define _PATH_SENDMAIL		"/usr/lib/sendmail"
30 #endif
31 #ifndef _PATH_TMP
32 #define _PATH_TMP		"/tmp"
33 #endif
34 #ifndef _PATH_DEVNULL
35 #define _PATH_DEVNULL		"/dev/null"
36 #endif
37 #ifndef _PATH_BSHELL
38 #define _PATH_BSHELL		"/bin/sh"
39 #endif
40 
41 #ifndef _PATH_REMSH
42 #define _PATH_REMSH		"/usr/ucb/rsh"		/* Remote shell */
43 #endif
44 
45 #endif	/* __RDISTPATHS_H__ */
46