mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 12:44:07 +00:00
-- remove some unnecessary includes -- fix a typo -- remove unnecessary void before launch_vms Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
14 lines
241 B
C
14 lines
241 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <logmsg.h>
|
|
|
|
void __stack_chk_fail(void);
|
|
|
|
void __stack_chk_fail(void)
|
|
{
|
|
ASSERT(false, "stack check fails in HV\n");
|
|
}
|