1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2025 The FreeBSD Foundation 5 * All rights reserved. 6 * 7 * This software were developed by Konstantin Belousov <kib@FreeBSD.org> 8 * under sponsorship from the FreeBSD Foundation. 9 */ 10 11 #ifndef _EXTERR_H_ 12 #define _EXTERR_H_ 13 14 #include <sys/cdefs.h> 15 #include <sys/exterr_cat.h> 16 17 __BEGIN_DECLS 18 int uexterr_gettext(char *buf, size_t bufsz); 19 __END_DECLS 20 21 #endif 22