xref: /freebsd/lib/libsys/libc_stubs.c (revision fd6b1cc34e4175c1e223f42540debb74cfe3c3e6)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2024 SRI International
5  */
6 
7 #define STUB_FUNC(f)	\
8     void (f)(void);	\
9     void (f)(void) { __builtin_trap(); }
10 
11 STUB_FUNC(elf_aux_info);
12