mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-29 20:24:00 +00:00
change some APIs to static or include header file Tracked-On: #861 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
13 lines
233 B
C
13 lines
233 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <logmsg.h>
|
|
#include <security.h>
|
|
|
|
void __stack_chk_fail(void)
|
|
{
|
|
ASSERT(false, "stack check fails in HV\n");
|
|
}
|