minix/minix/commands/swifi/swifi-ksyms.c
Lionel Sambuc 433d6423c3 New sources layout
Change-Id: Ic716f336b7071063997cf5b4dae6d50e0b4631e9
2014-07-31 16:00:30 +02:00

33 lines
825 B
C

/*
* swifi-ksyms.c -- exported symbols for wrappers od system functions
*
* Copyright (C) 2003 Mike Swift
*
* The source code in this file can be freely used, adapted,
* and redistributed in source or binary form, so long as an
* acknowledgment appears in derived source files.
* No warranty is attached;
* we cannot take responsibility for errors or fitness for use.
*
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include "swifi.h"
EXPORT_SYMBOL(sys_inject_fault);
EXPORT_SYMBOL(swifi_memmove_fn);
EXPORT_SYMBOL(swifi_memcpy_fn);
EXPORT_SYMBOL(memmove_fn);
EXPORT_SYMBOL(memcpy_fn);
EXPORT_SYMBOL(swifi_kfree);
EXPORT_SYMBOL(swifi_vfree);
EXPORT_SYMBOL(swifi_kmalloc);
EXPORT_SYMBOL(swifi___vmalloc);
EXPORT_SYMBOL(swifi___generic_copy_from_user);
EXPORT_SYMBOL(swifi___generic_copy_to_user);