xref: /freebsd/include/exterr.h (revision 187d8a3ce55a4e2d41fbe61465d5ff4ac0fc6bd5)
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/types.h>
15 
16 __BEGIN_DECLS
17 int uexterr_gettext(char *buf, size_t bufsz);
18 __END_DECLS
19 
20 #endif
21