xref: /netbsd-src/lib/librefuse/refuse/v32.c (revision ec9afb42821c4c1dc720bf626e8bbd4d8ab9d6b4)
1*ec9afb42Spho /* $NetBSD: v32.c,v 1.1 2022/01/22 08:09:40 pho Exp $ */
2*ec9afb42Spho 
3*ec9afb42Spho /*
4*ec9afb42Spho  * Copyright (c) 2021 The NetBSD Foundation, Inc.
5*ec9afb42Spho  * All rights reserved.
6*ec9afb42Spho  *
7*ec9afb42Spho  * Redistribution and use in source and binary forms, with or without
8*ec9afb42Spho  * modification, are permitted provided that the following conditions
9*ec9afb42Spho  * are met:
10*ec9afb42Spho  * 1. Redistributions of source code must retain the above copyright
11*ec9afb42Spho  *    notice, this list of conditions and the following disclaimer.
12*ec9afb42Spho  * 2. Redistributions in binary form must reproduce the above copyright
13*ec9afb42Spho  *    notice, this list of conditions and the following disclaimer in the
14*ec9afb42Spho  *    documentation and/or other materials provided with the distribution.
15*ec9afb42Spho  * 3. The name of the author may not be used to endorse or promote
16*ec9afb42Spho  *    products derived from this software without specific prior written
17*ec9afb42Spho  *    permission.
18*ec9afb42Spho  *
19*ec9afb42Spho  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
20*ec9afb42Spho  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21*ec9afb42Spho  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*ec9afb42Spho  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
23*ec9afb42Spho  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24*ec9afb42Spho  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25*ec9afb42Spho  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*ec9afb42Spho  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27*ec9afb42Spho  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28*ec9afb42Spho  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29*ec9afb42Spho  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30*ec9afb42Spho  */
31*ec9afb42Spho 
32*ec9afb42Spho #include <sys/cdefs.h>
33*ec9afb42Spho #if !defined(lint)
34*ec9afb42Spho __RCSID("$NetBSD: v32.c,v 1.1 2022/01/22 08:09:40 pho Exp $");
35*ec9afb42Spho #endif /* !lint */
36*ec9afb42Spho 
37*ec9afb42Spho #include <fuse_internal.h>
38*ec9afb42Spho 
39*ec9afb42Spho int
fuse_loop_mt_v32(struct fuse * fuse,struct fuse_loop_config * config)40*ec9afb42Spho fuse_loop_mt_v32(struct fuse *fuse, struct fuse_loop_config *config) {
41*ec9afb42Spho     return __fuse_loop_mt(fuse, config);
42*ec9afb42Spho }
43