blob: 1384f97754264d31a550d3b0027d5f479140bd63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* lib9p/srv_errno.h - TODO
*
* Copyright (C) 2025 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIB9P_SRV_ERRNO_H_
#define _LIB9P_SRV_ERRNO_H_
#if CONFIG_9P_ENABLE_9P2000_u || CONFIG_9P_ENABLE_9P2000_L
lib9p_errno_t libmisc_to_linuxgeneric_errno(_errnum);
#endif
#endif /* _LIB9P_SRV_ERRNO_H_ */
|