xref: /original-bsd/usr.bin/m4/pathnames.h (revision c3e32dec)
1 /*
2  * Copyright (c) 1989, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Ozan Yigit at York University.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)pathnames.h	8.1 (Berkeley) 06/06/93
11  */
12 
13 /*
14  * Definitions of diversion files.  If the name of the file is changed,
15  * adjust UNIQUE to point to the wildcard (*) character in the filename.
16  */
17 
18 #ifdef msdos
19 #define _PATH_DIVNAME	"\\M4*XXXXXX"		/* msdos diversion files */
20 #define	UNIQUE		3			/* unique char location */
21 #endif
22 
23 #ifdef unix
24 #define _PATH_DIVNAME	"/tmp/m4.0XXXXXX"	/* unix diversion files */
25 #define UNIQUE		8			/* unique char location */
26 #endif
27 
28 #ifdef vms
29 #define _PATH_DIVNAME	"sys$login:m4*XXXXXX"	/* vms diversion files */
30 #define UNIQUE		12			/* unique char location */
31 #endif
32