diff options
author | Andre Pang <athp@users.sourceforge.net> | 2004-12-01 07:30:54 +0000 |
---|---|---|
committer | Andre Pang <athp@users.sourceforge.net> | 2004-12-01 07:30:54 +0000 |
commit | 43e077b7e93a0f56c8a3d0daa4f70d97368455f0 (patch) | |
tree | 1f9a0e8dbbc18a77a15dfe4f3664154c3a1bad41 /lib | |
parent | dda0a92d54ebecf63e0e12c49ab062cad4371d03 (diff) | |
download | xine-lib-43e077b7e93a0f56c8a3d0daa4f70d97368455f0.tar.gz xine-lib-43e077b7e93a0f56c8a3d0daa4f70d97368455f0.tar.bz2 |
mingw32 doesn't declare 'struct timezone'
CVS patchset: 7173
CVS date: 2004/12/01 07:30:54
Diffstat (limited to 'lib')
-rw-r--r-- | lib/os_types.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/os_types.h b/lib/os_types.h index 2f5f0c99c..80254a925 100644 --- a/lib/os_types.h +++ b/lib/os_types.h @@ -105,6 +105,15 @@ # endif /* __STDC_LIBRARY_SUPPORTED__ */ # include <inttypes.h> +#elif defined(MINGW32) + +# include <inttypes.h> + + struct timezone { + int tz_minuteswest; + int tz_dstime; + }; + #else /* |