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