mirror of
https://git.freebsd.org/src.git
synced 2026-01-12 06:54:03 +00:00
Reviewed by: brooks Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Differential revision: https://reviews.freebsd.org/D50483
21 lines
419 B
C
21 lines
419 B
C
/*-
|
|
* 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/cdefs.h>
|
|
#include <sys/exterr_cat.h>
|
|
|
|
__BEGIN_DECLS
|
|
int uexterr_gettext(char *buf, size_t bufsz);
|
|
__END_DECLS
|
|
|
|
#endif
|