1
0

libc_stdio.h 362 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-09-05 Meco Manthe first version
  9. */
  10. #ifndef LIBC_STDIO_H__
  11. #define LIBC_STDIO_H__
  12. #include <rtconfig.h>
  13. #ifdef RT_USING_POSIX_GETLINE
  14. #include <posix_getline.h>
  15. #endif
  16. #endif