Deprecate this header which provides API compatibility with native_posix, with planned removal in v4.4. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
19 lines
516 B
C
19 lines
516 B
C
/*
|
|
* Copyright (c) 2018 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef BOARDS_POSIX_NATIVE_SIM_CMDLINE_COMMON_H
|
|
#define BOARDS_POSIX_NATIVE_SIM_CMDLINE_COMMON_H
|
|
|
|
#warning "This transitional header is now deprecated and will be removed by v4.4. "\
|
|
"Use nsi_cmdline.h instead."
|
|
|
|
/*
|
|
* To support native_posix drivers which register their own arguments
|
|
* we provide a header with the same name as in native_posix
|
|
*/
|
|
#include "nsi_cmdline.h"
|
|
|
|
#endif /* BOARDS_POSIX_NATIVE_SIM_CMDLINE_COMMON_H */
|