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