diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-09-19 13:31:19 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-09-19 13:31:19 +0000 |
commit | a65c101d4e5fdb2f29a84663fef330ac8aeca276 (patch) | |
tree | dbbf1404d7040e3a9e90a8ac4b8bcc57b606ee8b /lib/gettimeofday.c | |
parent | e37f9eb4029b1a85a3990975969f523cfe4db3bc (diff) | |
download | xine-lib-a65c101d4e5fdb2f29a84663fef330ac8aeca276.tar.gz xine-lib-a65c101d4e5fdb2f29a84663fef330ac8aeca276.tar.bz2 |
Finish the latest change - fix broken build for some platforms (BSD, Win, Solaris).
CVS patchset: 8271
CVS date: 2006/09/19 13:31:19
Diffstat (limited to 'lib/gettimeofday.c')
-rw-r--r-- | lib/gettimeofday.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gettimeofday.c b/lib/gettimeofday.c index fb31f12ef..274b7fca2 100644 --- a/lib/gettimeofday.c +++ b/lib/gettimeofday.c @@ -9,7 +9,7 @@ #include <sys/time.h> #endif -int _xine_private_gettimeofday(struct timeval *tv) { +int xine_private_gettimeofday(struct timeval *tv) { struct timeb tp; ftime(&tp); |