ae75f9d4e5
- 755 -> 644
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
/*
|
|
* cawflib.h - definition of cawf's library path
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 1991 Purdue University Research Foundation,
|
|
* West Lafayette, Indiana 47907. All rights reserved.
|
|
*
|
|
* Written by Victor A. Abell <abe@mace.cc.purdue.edu>, Purdue
|
|
* University Computing Center. Not derived from licensed software;
|
|
* derived from awf(1) by Henry Spencer of the University of Toronto.
|
|
*
|
|
* Permission is granted to anyone to use this software for any
|
|
* purpose on any computer system, and to alter it and redistribute
|
|
* it freely, subject to the following restrictions:
|
|
*
|
|
* 1. The author is not responsible for any consequences of use of
|
|
* this software, even if they arise from flaws in it.
|
|
*
|
|
* 2. The origin of this software must not be misrepresented, either
|
|
* by explicit claim or by omission. Credits must appear in the
|
|
* documentation.
|
|
*
|
|
* 3. Altered versions must be plainly marked as such, and must not
|
|
* be misrepresented as being the original software. Credits must
|
|
* appear in the documentation.
|
|
*
|
|
* 4. This notice may not be removed or altered.
|
|
*/
|
|
|
|
#ifndef CAWFLIB
|
|
#ifdef UNIX
|
|
#define CAWFLIB "/usr/lib/cawf" /* UNIX library location */
|
|
#else
|
|
#define CAWFLIB "c:/sys/lib/cawf" /* PC-DOS library location */
|
|
#endif
|
|
#endif
|
|
/* (CAWFLIB environment
|
|
* variable over-rides it) */
|