xref: /netbsd-src/common/lib/libppath/ppath_extant.c (revision 064bbf208f573742b6e2dc9e9483e9388f6ab0d2)
1*064bbf20Schristos /* $NetBSD: ppath_extant.c,v 1.2 2012/12/29 20:08:23 christos Exp $ */
2*064bbf20Schristos 
333ce21e2Sdyoung /*-
433ce21e2Sdyoung  * Copyright (c) 2011 The NetBSD Foundation, Inc.
533ce21e2Sdyoung  * All rights reserved.
633ce21e2Sdyoung  *
733ce21e2Sdyoung  * This code is derived from software contributed to The NetBSD Foundation
833ce21e2Sdyoung  * by David Young <dyoung@NetBSD.org>.
933ce21e2Sdyoung  *
1033ce21e2Sdyoung  * Redistribution and use in source and binary forms, with or without
1133ce21e2Sdyoung  * modification, are permitted provided that the following conditions
1233ce21e2Sdyoung  * are met:
1333ce21e2Sdyoung  * 1. Redistributions of source code must retain the above copyright
1433ce21e2Sdyoung  *    notice, this list of conditions and the following disclaimer.
1533ce21e2Sdyoung  * 2. Redistributions in binary form must reproduce the above copyright
1633ce21e2Sdyoung  *    notice, this list of conditions and the following disclaimer in the
1733ce21e2Sdyoung  *    documentation and/or other materials provided with the distribution.
1833ce21e2Sdyoung  *
1933ce21e2Sdyoung  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2033ce21e2Sdyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2133ce21e2Sdyoung  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2233ce21e2Sdyoung  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2333ce21e2Sdyoung  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2433ce21e2Sdyoung  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2533ce21e2Sdyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2633ce21e2Sdyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2733ce21e2Sdyoung  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2833ce21e2Sdyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2933ce21e2Sdyoung  * POSSIBILITY OF SUCH DAMAGE.
3033ce21e2Sdyoung  */
3133ce21e2Sdyoung 
3233ce21e2Sdyoung #include <sys/cdefs.h>
33*064bbf20Schristos __RCSID("$NetBSD: ppath_extant.c,v 1.2 2012/12/29 20:08:23 christos Exp $");
3433ce21e2Sdyoung 
3533ce21e2Sdyoung #include <ppath/ppath_impl.h>
3633ce21e2Sdyoung 
3733ce21e2Sdyoung void null_extant(void);
3833ce21e2Sdyoung 
__weak_alias(ppath_component_extant_inc,null_extant)3933ce21e2Sdyoung __weak_alias(ppath_component_extant_inc, null_extant)
4033ce21e2Sdyoung __weak_alias(ppath_component_extant_dec, null_extant)
4133ce21e2Sdyoung __weak_alias(ppath_extant_inc, null_extant)
4233ce21e2Sdyoung __weak_alias(ppath_extant_dec, null_extant)
4333ce21e2Sdyoung 
4433ce21e2Sdyoung void
4533ce21e2Sdyoung null_extant(void)
4633ce21e2Sdyoung {
4733ce21e2Sdyoung 	/* do nothing */
4833ce21e2Sdyoung }
49