Commit d6d70202 authored by mru's avatar mru

simplify


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7048 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9f4f490b
......@@ -53,8 +53,7 @@ int64_t av_gettime(void)
#endif
}
#if !defined(CONFIG_WINCE)
#if !defined(HAVE_LOCALTIME_R)
#if !defined(CONFIG_WINCE) && !defined(HAVE_LOCALTIME_R)
struct tm *localtime_r(const time_t *t, struct tm *tp)
{
struct tm *l;
......@@ -65,5 +64,4 @@ struct tm *localtime_r(const time_t *t, struct tm *tp)
*tp = *l;
return tp;
}
#endif /* !defined(HAVE_LOCALTIME_R) */
#endif /* !defined(CONFIG_WINCE) */
#endif /* !defined(CONFIG_WINCE) && !defined(HAVE_LOCALTIME_R) */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment