1334775Shselasky/*-
2334775Shselasky * Copyright (c) 2018 Johannes Lundberg <johalun0@gmail.com>
3334775Shselasky *
4334775Shselasky * Redistribution and use in source and binary forms, with or without
5334775Shselasky * modification, are permitted provided that the following conditions
6334775Shselasky * are met:
7334775Shselasky * 1. Redistributions of source code must retain the above copyright
8334775Shselasky *    notice unmodified, this list of conditions, and the following
9334775Shselasky *    disclaimer.
10334775Shselasky * 2. Redistributions in binary form must reproduce the above copyright
11334775Shselasky *    notice, this list of conditions and the following disclaimer in the
12334775Shselasky *    documentation and/or other materials provided with the distribution.
13334775Shselasky *
14334775Shselasky * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15334775Shselasky * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16334775Shselasky * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17334775Shselasky * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18334775Shselasky * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19334775Shselasky * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20334775Shselasky * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21334775Shselasky * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22334775Shselasky * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23334775Shselasky * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24334775Shselasky *
25334775Shselasky * $FreeBSD: stable/11/sys/compat/linuxkpi/common/include/linux/export.h 335435 2018-06-20 06:59:39Z hselasky $
26334775Shselasky */
27334775Shselasky#ifndef	_LINUX_EXPORT_H
28334775Shselasky#define	_LINUX_EXPORT_H
29334775Shselasky
30334775Shselasky#define	EXPORT_SYMBOL(name)
31334775Shselasky#define	EXPORT_SYMBOL_GPL(name)
32334775Shselasky
33334775Shselasky#endif
34