1 /*
2  * Copyright (c) 2024 Meta
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_LIB_POSIX_SHELL_POSIX_SHELL_H_
8 #define ZEPHYR_LIB_POSIX_SHELL_POSIX_SHELL_H_
9 
10 #include <zephyr/shell/shell.h>
11 
12 /* Add command to the set of POSIX subcommands, see `SHELL_SUBCMD_ADD` */
13 #define POSIX_CMD_ADD(_syntax, _subcmd, _help, _handler, _mand, _opt)                              \
14 	SHELL_SUBCMD_ADD((posix), _syntax, _subcmd, _help, _handler, _mand, _opt);
15 
16 #endif /* ZEPHYR_LIB_POSIX_SHELL_POSIX_SHELL_H_ */
17