mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-03 22:17:03 +00:00
- move the contents in macros.h and stdarg.h to util.h - remove macros.h and stdarg.h Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
22 lines
365 B
C
22 lines
365 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef HV_LIB_H
|
|
#define HV_LIB_H
|
|
|
|
#include <types.h>
|
|
#include <errno.h>
|
|
#include <rtl.h>
|
|
#include <spinlock.h>
|
|
#include <mem_mgt.h>
|
|
#include <util.h>
|
|
#include <list.h>
|
|
#include <atomic.h>
|
|
#include <bits.h>
|
|
#include <sprintf.h>
|
|
|
|
#endif /* HV_LIB_H */
|