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