xref: /freebsd/lib/libsys/libc_stubs.c (revision 8d13bc63c0e1d50bc9e47ac1f26329c999bfecf0)
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