blob: ba9a4e6f3ceb30334e0a7fa5111f401b2cedb064 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/** @file
Defines the stack cookie variable for GCC, Clang and MSVC compilers.
Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Uefi.h>
VOID *__security_cookie = (VOID *)(UINTN)0x0;
|