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 <[email protected]> 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 18int uexterr_gettext(char *buf, size_t bufsz); 19__END_DECLS 20 21#endif 22 23