mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 04:33:58 +00:00
Replace the BSD-3-Clause boiler plate license text with an SPDX tag. Fixes: #189 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
24 lines
405 B
C
24 lines
405 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 <macros.h>
|
|
#include <rtl.h>
|
|
#include <spinlock.h>
|
|
#include <mem_mgt.h>
|
|
#include <stdarg.h>
|
|
#include <util.h>
|
|
#include <list.h>
|
|
#include <atomic.h>
|
|
#include <bits.h>
|
|
#include <sprintf.h>
|
|
|
|
#endif /* HV_LIB_H */
|