export.h revision 335435
1139969Simp/*-
21556Srgrimes * Copyright (c) 2018 Johannes Lundberg <johalun0@gmail.com>
31556Srgrimes *
41556Srgrimes * Redistribution and use in source and binary forms, with or without
51556Srgrimes * modification, are permitted provided that the following conditions
61556Srgrimes * are met:
71556Srgrimes * 1. Redistributions of source code must retain the above copyright
81556Srgrimes *    notice unmodified, this list of conditions, and the following
91556Srgrimes *    disclaimer.
101556Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111556Srgrimes *    notice, this list of conditions and the following disclaimer in the
121556Srgrimes *    documentation and/or other materials provided with the distribution.
131556Srgrimes *
141556Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
151556Srgrimes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
161556Srgrimes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
171556Srgrimes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
181556Srgrimes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
191556Srgrimes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
201556Srgrimes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
211556Srgrimes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
221556Srgrimes * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
231556Srgrimes * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
241556Srgrimes *
251556Srgrimes * $FreeBSD: stable/11/sys/compat/linuxkpi/common/include/linux/export.h 335435 2018-06-20 06:59:39Z hselasky $
261556Srgrimes */
271556Srgrimes#ifndef	_LINUX_EXPORT_H
281556Srgrimes#define	_LINUX_EXPORT_H
291556Srgrimes
301556Srgrimes#define	EXPORT_SYMBOL(name)
311556Srgrimes#define	EXPORT_SYMBOL_GPL(name)
321556Srgrimes
331556Srgrimes#endif
3427958Ssteve