/*1* kvm_lib.c: Compile some libraries for kvm-intel module.2*3* Just include kernel's library, and disable symbols export.4* Copyright (C) 2008, Intel Corporation.5* Xiantao Zhang ([email protected])6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License version 2 as9* published by the Free Software Foundation.10*11*/12#undef CONFIG_MODULES13#include <linux/module.h>14#undef CONFIG_KALLSYMS15#undef EXPORT_SYMBOL16#undef EXPORT_SYMBOL_GPL17#define EXPORT_SYMBOL(sym)18#define EXPORT_SYMBOL_GPL(sym)19#include "../../../lib/vsprintf.c"20#include "../../../lib/ctype.c"212223