pathnames.h revision 65064
164775Sbrian/*-
264775Sbrian * Copyright (c) 2000 Mark Knight <markk@knigma.org>
364775Sbrian * All rights reserved.
464775Sbrian *
564775Sbrian * Redistribution and use in source and binary forms, with or without
664775Sbrian * modification, are permitted provided that the following conditions
764775Sbrian * are met:
864775Sbrian * 1. Redistributions of source code must retain the above copyright
964775Sbrian *    notice, this list of conditions and the following disclaimer.
1064775Sbrian * 2. Redistributions in binary form must reproduce the above copyright
1164775Sbrian *    notice, this list of conditions and the following disclaimer in the
1264775Sbrian *    documentation and/or other materials provided with the distribution.
1364775Sbrian *
1464775Sbrian * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1564775Sbrian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1664775Sbrian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1764775Sbrian * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1864775Sbrian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1964775Sbrian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2064775Sbrian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2164775Sbrian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2264775Sbrian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2364775Sbrian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2464775Sbrian * SUCH DAMAGE.
2564775Sbrian *
2664775Sbrian * $FreeBSD: head/usr.bin/finger/pathnames.h 65064 2000-08-25 01:01:07Z brian $
2764775Sbrian */
2864775Sbrian
2965064Sbrian#ifndef PATHNAMES_H
3065064Sbrian
3165064Sbrian#define	_PATH_FORWARD	".forward"
3265064Sbrian#define	_PATH_PLAN	".plan"
3365064Sbrian#define	_PATH_PROJECT	".project"
3465064Sbrian
3564775Sbrian#ifndef _PATH_FINGERCONF
3664775Sbrian#define _PATH_FINGERCONF "/etc/finger.conf"
3764775Sbrian#endif /* _PATH_FINGERCONF */
3865064Sbrian
3965064Sbrian#endif /* PATHNAMES_H */
40