application.c 582 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * File : application.c
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Develop Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://openlab.rt-thread.com/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2006-09-15 QiuYi the first version
  13. */
  14. /**
  15. * @addtogroup QEMU
  16. */
  17. /*@{*/
  18. /**
  19. * This function will be invoked to initalize user application when system startup.
  20. */
  21. int rt_application_init()
  22. {
  23. return 0; /* empty */
  24. }
  25. /*@}*/