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

VxWorks

开发平台:

C/C++

  1. /* assertLibInit.c - assert library initialization */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,07sep92,smb  written.
  7. */
  8. /*
  9. DESCRIPTION
  10. This file is used to include the assert ANSI C library routine in the 
  11. VxWorks build. The routines are only included when this file is 
  12. included by usrConfig.c
  13. NOMANUAL
  14. */
  15. #ifndef  __INCassertLibInitc 
  16. #define  __INCassertLibInitc 
  17. #include "vxWorks.h"
  18. #include "assert.h"
  19. VOIDFUNCPTR assertFiles[] =
  20.     {
  21.     (VOIDFUNCPTR) __assert,
  22.     };
  23. #endif /* __INCassertLibInitc */