usrAppInit.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usrAppInit.c - stub application initialization routine */
  2. /* Copyright 1984-1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,02jun98,ms   written
  7. */
  8. /*
  9. DESCRIPTION
  10. Initialize user application code.
  11. */ 
  12. /******************************************************************************
  13. *
  14. * usrAppInit - initialize the users application
  15. */ 
  16. void usrAppInit (void)
  17.     {
  18. #ifdef USER_APPL_INIT
  19. USER_APPL_INIT; /* for backwards compatibility */
  20. #endif
  21.     /* add application specific code here */
  22.     }