xref: /netbsd/common/lib/libppath/ppath_extant.c (revision 8c12f608)
1*8c12f608Schristos /* $NetBSD: ppath_extant.c,v 1.2 2012/12/29 20:08:23 christos Exp $ */
2*8c12f608Schristos 
3913c639aSdyoung /*-
4913c639aSdyoung  * Copyright (c) 2011 The NetBSD Foundation, Inc.
5913c639aSdyoung  * All rights reserved.
6913c639aSdyoung  *
7913c639aSdyoung  * This code is derived from software contributed to The NetBSD Foundation
8913c639aSdyoung  * by David Young <dyoung@NetBSD.org>.
9913c639aSdyoung  *
10913c639aSdyoung  * Redistribution and use in source and binary forms, with or without
11913c639aSdyoung  * modification, are permitted provided that the following conditions
12913c639aSdyoung  * are met:
13913c639aSdyoung  * 1. Redistributions of source code must retain the above copyright
14913c639aSdyoung  *    notice, this list of conditions and the following disclaimer.
15913c639aSdyoung  * 2. Redistributions in binary form must reproduce the above copyright
16913c639aSdyoung  *    notice, this list of conditions and the following disclaimer in the
17913c639aSdyoung  *    documentation and/or other materials provided with the distribution.
18913c639aSdyoung  *
19913c639aSdyoung  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20913c639aSdyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21913c639aSdyoung  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22913c639aSdyoung  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23913c639aSdyoung  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24913c639aSdyoung  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25913c639aSdyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26913c639aSdyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27913c639aSdyoung  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28913c639aSdyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29913c639aSdyoung  * POSSIBILITY OF SUCH DAMAGE.
30913c639aSdyoung  */
31913c639aSdyoung 
32913c639aSdyoung #include <sys/cdefs.h>
33*8c12f608Schristos __RCSID("$NetBSD: ppath_extant.c,v 1.2 2012/12/29 20:08:23 christos Exp $");
34913c639aSdyoung 
35913c639aSdyoung #include <ppath/ppath_impl.h>
36913c639aSdyoung 
37913c639aSdyoung void null_extant(void);
38913c639aSdyoung 
__weak_alias(ppath_component_extant_inc,null_extant)39913c639aSdyoung __weak_alias(ppath_component_extant_inc, null_extant)
40913c639aSdyoung __weak_alias(ppath_component_extant_dec, null_extant)
41913c639aSdyoung __weak_alias(ppath_extant_inc, null_extant)
42913c639aSdyoung __weak_alias(ppath_extant_dec, null_extant)
43913c639aSdyoung 
44913c639aSdyoung void
45913c639aSdyoung null_extant(void)
46913c639aSdyoung {
47913c639aSdyoung 	/* do nothing */
48913c639aSdyoung }
49