2018-03-07 20:57:14 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2018-05-26 01:49:13 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-03-07 20:57:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HV_LIB_H
|
|
|
|
#define HV_LIB_H
|
|
|
|
|
|
|
|
#include <types.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <rtl.h>
|
|
|
|
#include <spinlock.h>
|
|
|
|
#include <mem_mgt.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <util.h>
|
|
|
|
#include <list.h>
|
2018-05-16 15:39:08 +08:00
|
|
|
#include <atomic.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
#include <bits.h>
|
2018-03-21 18:46:14 +08:00
|
|
|
#include <sprintf.h>
|
2018-03-07 20:57:14 +08:00
|
|
|
|
|
|
|
#endif /* HV_LIB_H */
|