acrn-hypervisor/hypervisor/common/stack_protector.c
Mingqiang Chi da9ed0eda9 hv:remove some unnecessary includes
remove some unnecessary includes

Tracked-On: #1842
Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
2019-05-07 09:10:13 +08:00

12 lines
211 B
C

/*
* Copyright (C) 2018 Intel Corporation. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <logmsg.h>
void __stack_chk_fail(void)
{
ASSERT(false, "stack check fails in HV\n");
}