diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-06-08 04:02:13 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-06-08 04:02:13 -0600 |
commit | db1b4b4cc41c84ec4c8e11418431a1ab2a1001c5 (patch) | |
tree | 54fa10580413b4b1dfbd9b22a52fffca834f772e /lib9p/srv_errno.h | |
parent | bc1c776e238fb15444f7aa74da9c4d0edc50906b (diff) | |
parent | 53d0b11262177cd212803fc9330e055871c348b3 (diff) |
Merge remote-tracking branch 'origin/main' into lukeshu/fix-obj-box
Diffstat (limited to 'lib9p/srv_errno.h')
-rw-r--r-- | lib9p/srv_errno.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib9p/srv_errno.h b/lib9p/srv_errno.h new file mode 100644 index 0000000..1384f97 --- /dev/null +++ b/lib9p/srv_errno.h @@ -0,0 +1,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_ */ |