123456789101112131415161718192021222324 |
- #ifndef THREADX_ASSERT_H__
- #define THREADX_ASSERT_H__
- // c standard head file.
- #include <string.h>
- #include <assert.h>
- #include <stdlib.h>
- #include <stdio.h>
- /**---------------------------------------------------------------------------*
- ** Compiler Flag *
- **---------------------------------------------------------------------------*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**---------------------------------------------------------------------------*
- ** Compiler Flag *
- **---------------------------------------------------------------------------*/
- #ifdef __cplusplus
- }
- #endif
- #endif
|