Mercurial > hg > fxanalyse
diff future.c @ 91:4102fe614df2
Fix timestamping. Cleanup data providers
author | Daniele Nicolodi <daniele.nicolodi@obspm.fr> |
---|---|
date | Fri, 22 Mar 2013 16:32:15 +0100 |
parents | be814b934eca |
children | b955e35c07ae |
line wrap: on
line diff
--- a/future.c Fri Mar 22 18:49:58 2013 +0100 +++ b/future.c Fri Mar 22 16:32:15 2013 +0100 @@ -54,18 +54,3 @@ return 0; } - -static struct tm * copy_tm_result(struct tm *dest, struct tm const *src) -{ - if (! src) - return NULL; - *dest = *src; - return dest; -} - - -struct tm * gmtime_r(time_t const *t, struct tm *tp) -{ - return copy_tm_result(tp, gmtime(t)); -} -