threadx_assert.h 718 B

123456789101112131415161718192021222324
  1. #ifndef THREADX_ASSERT_H__
  2. #define THREADX_ASSERT_H__
  3. // c standard head file.
  4. #include <string.h>
  5. #include <assert.h>
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. /**---------------------------------------------------------------------------*
  9. ** Compiler Flag *
  10. **---------------------------------------------------------------------------*/
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**---------------------------------------------------------------------------*
  15. ** Compiler Flag *
  16. **---------------------------------------------------------------------------*/
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif