assert.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* assert.c - ANSI standard assert function */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,24oct92,smb  removed some redundant documentation.
  7. 01b,20sep92,smb  documentation additions.
  8. 01a,20jul92,smb  written.
  9. */
  10. /*
  11. DESCRIPTION
  12. INCLUDE FILES: stdio.h, stdlib.h, assert.h
  13. SEE ALSO: American National Standard X3.159-1989
  14. NOMANUAL
  15. */
  16. #include "vxWorks.h"
  17. #include "assert.h"
  18. #include "stdio.h"
  19. #include "stdlib.h"
  20. /******************************************************************************
  21. *
  22. * __assert - function called by the assert macro. 
  23. *
  24. * INCLUDE: stdio.h assert.h
  25. *
  26. * RETURNS: never returns
  27. * NOMANUAL
  28. */
  29. void __assert
  30.     (
  31.     const char *msg /* message string */
  32.     )
  33.     {
  34.     fdprintf(2, "%sn", CHAR_FROM_CONST (msg)); /* print msg to error stream */
  35.     abort(); 
  36.     }