blob: 41d69a9355c33e02287916dc5d2ca2e030e19011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*-
* 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);
|