/* $Header: /var/lib/cvsd/repos/CSRG/43BSDTahoe/new/mkmf/src/getcwp.c,v 1.1.1.1 2018/04/24 16:12:58 root Exp $ */

/*
 * Author: Peter J. Nicklin
 */

/*
 * getcwp() returns the pathname of the current working project. If the
 * PROJECT environment variable is undefined or a null string, null is
 * returned.
 */
#include "null.h"

char *
getcwp()
{
	extern char *_PROJECT;		/* project root directory pathname */
	void getproject();		/* get PROJECT environment variable */

	if (_PROJECT == NULL)
		getproject();
	return(_PROJECT);
}
