1*267128c2Sriastradh /* $NetBSD: export.h,v 1.2 2022/10/25 23:31:27 riastradh Exp $ */ 296abad2eSriastradh 396abad2eSriastradh /*- 496abad2eSriastradh * Copyright (c) 2013 The NetBSD Foundation, Inc. 596abad2eSriastradh * All rights reserved. 696abad2eSriastradh * 796abad2eSriastradh * This code is derived from software contributed to The NetBSD Foundation 896abad2eSriastradh * by Taylor R. Campbell. 996abad2eSriastradh * 1096abad2eSriastradh * Redistribution and use in source and binary forms, with or without 1196abad2eSriastradh * modification, are permitted provided that the following conditions 1296abad2eSriastradh * are met: 1396abad2eSriastradh * 1. Redistributions of source code must retain the above copyright 1496abad2eSriastradh * notice, this list of conditions and the following disclaimer. 1596abad2eSriastradh * 2. Redistributions in binary form must reproduce the above copyright 1696abad2eSriastradh * notice, this list of conditions and the following disclaimer in the 1796abad2eSriastradh * documentation and/or other materials provided with the distribution. 1896abad2eSriastradh * 1996abad2eSriastradh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 2096abad2eSriastradh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 2196abad2eSriastradh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 2296abad2eSriastradh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 2396abad2eSriastradh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 2496abad2eSriastradh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 2596abad2eSriastradh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 2696abad2eSriastradh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 2796abad2eSriastradh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 2896abad2eSriastradh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 2996abad2eSriastradh * POSSIBILITY OF SUCH DAMAGE. 3096abad2eSriastradh */ 3196abad2eSriastradh 3296abad2eSriastradh #ifndef _LINUX_EXPORT_H_ 3396abad2eSriastradh #define _LINUX_EXPORT_H_ 3496abad2eSriastradh 35*267128c2Sriastradh #include <linux/stringify.h> 36*267128c2Sriastradh 3796abad2eSriastradh #define EXPORT_SYMBOL(name) 3896abad2eSriastradh 3996abad2eSriastradh /* XXX Provisional -- this shouldn't happen in sources we use. */ 4096abad2eSriastradh #define EXPORT_SYMBOL_GPL(name) 4196abad2eSriastradh 4296abad2eSriastradh #endif /* _LINUX_EXPORT_H_ */ 43