mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-15 14:45:21 +00:00
console_register_line_input has been deprecated for at least 2 releases so we can now remove it. Remove native_stdin_register_input that is associated with console_register_line_input. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
23 lines
400 B
C
23 lines
400 B
C
/*
|
|
* Copyright (c) 2018 Oticon A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_
|
|
#define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_
|
|
|
|
#include "kernel.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void posix_flush_stdout(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_ */
|