mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 20:01:08 +01:00
12 lines
205 B
C
12 lines
205 B
C
|
/*-
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*
|
||
|
* Copyright (c) 2024 SRI International
|
||
|
*/
|
||
|
|
||
|
#define STUB_FUNC(f) \
|
||
|
void (f)(void); \
|
||
|
void (f)(void) { __builtin_trap(); }
|
||
|
|
||
|
STUB_FUNC(elf_aux_info);
|