Remove Control.Parallel*, now in package parallel
[haskell-directory.git] / cbits / timeUtils.c
1 /* 
2  * (c) The University of Glasgow 2002
3  *
4  * Time Runtime Support
5  */
6 #include "HsBase.h"
7
8 #if defined(_MSC_VER) || defined(__MINGW32__) || defined(_WIN32) /* to the end */
9
10 long *__hscore_timezone( void )
11 { return &_timezone; }
12
13 char **__hscore_tzname( void )
14 { return _tzname; }
15 #endif