acrn-hypervisor/hypervisor/lib/stack_protector.c
Mingqiang Chi 38ca8db19f hv:tiny cleanup
-- 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>
2019-09-05 09:58:47 +08:00

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");
}