xref: /freebsd/include/exterr.h (revision c2dee7786bf32cb66cedec226e42e79e06457c51)
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