diff --git a/components/finsh/msh_file.c b/components/finsh/msh_file.c index 7b1a9f8f0189c3a4e85bb639869aa2157629c402..9deab4f0bc8027b0c51c602ad933ac45c66007a4 100644 --- a/components/finsh/msh_file.c +++ b/components/finsh/msh_file.c @@ -608,7 +608,7 @@ MSH_CMD_EXPORT_ALIAS(cmd_echo, echo, echo string to file); static int cmd_tail(int argc, char **argv) { int fd; - char c = '\0'; + char c = RT_NULL; char *file_name = RT_NULL; rt_uint32_t total_lines = 0; rt_uint32_t target_line = 0; diff --git a/components/libc/compilers/common/ctime.c b/components/libc/compilers/common/ctime.c index 8d22dab0c07a661f62b7989ef8900a18894be2d4..6cef1e222d208988689a9a66b8061e045045036e 100644 --- a/components/libc/compilers/common/ctime.c +++ b/components/libc/compilers/common/ctime.c @@ -180,7 +180,7 @@ struct tm *gmtime_r(const time_t *timep, struct tm *r) return RT_NULL; } - rt_memset(r, 0, sizeof(struct tm)); + rt_memset(r, RT_NULL, sizeof(struct tm)); r->tm_sec = work % 60; work /= 60; @@ -258,7 +258,7 @@ char* asctime_r(const struct tm *t, char *buf) return RT_NULL; } - rt_memset(buf, 0, 26); + rt_memset(buf, RT_NULL, 26); /* Checking input validity */ if ((int)rt_strlen(days) <= (t->tm_wday << 2) || (int)rt_strlen(months) <= (t->tm_mon << 2)) diff --git a/components/libc/posix/pthreads/pthread.c b/components/libc/posix/pthreads/pthread.c index 355cbf0f8f3cd167460d8b1953a18e8b2d4e0e45..a7dcc9ee7c365ec209d7e768c345c6ef8f1865c7 100644 --- a/components/libc/posix/pthreads/pthread.c +++ b/components/libc/posix/pthreads/pthread.c @@ -136,7 +136,7 @@ void _pthread_data_destroy(_pthread_data_t *ptd) ptd->magic = 0x0; /* clear the "ptd->tid->user_data" */ - ptd->tid->user_data = 0; + ptd->tid->user_data = RT_NULL; /* free ptd */ rt_free(ptd); diff --git a/include/rtdef.h b/include/rtdef.h index d8aac08ca4a977eea953887cff9f736fdbd6308f..dd5dffc6c56b9a4d592ac35876976ddeca90a178 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -123,11 +123,7 @@ typedef rt_base_t rt_off_t; /**< Type for offset */ #define RT_FALSE 0 /**< boolean fails */ /* null pointer definition */ -#ifdef RT_USING_LIBC -#define RT_NULL NULL /**< null pointer */ -#else -#define RT_NULL (0) /**< null pointer */ -#endif /* RT_USING_LIBC */ +#define RT_NULL 0 /**@}*/