native_posix_console.h 400 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2018 Oticon A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_
  8. #include "kernel.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. void posix_flush_stdout(void);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* ZEPHYR_INCLUDE_DRIVERS_CONSOLE_NATIVE_POSIX_CONSOLE_H_ */