[Components/libc] Fix time.c code style in armlibc and dlib.
This commit is contained in:
parent
5dd0539293
commit
2d9798ac3d
|
@ -1,5 +1,7 @@
|
|||
#include <sys/time.h>
|
||||
#include <rtdevice.h>
|
||||
|
||||
#if defined(RT_USING_DEVICE) && defined(RT_USING_RTC)
|
||||
int gettimeofday(struct timeval *tp, void *ignore)
|
||||
{
|
||||
time_t time;
|
||||
|
@ -20,4 +22,4 @@ int gettimeofday(struct timeval *tp, void *ignore)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#include <sys/time.h>
|
||||
#include <rtdevice.h>
|
||||
|
||||
#if defined(RT_USING_DEVICE) && defined(RT_USING_RTC)
|
||||
int gettimeofday(struct timeval *tp, void *ignore)
|
||||
{
|
||||
time_t time;
|
||||
|
@ -20,4 +22,4 @@ int gettimeofday(struct timeval *tp, void *ignore)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue