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