Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #include <sys/types.h>
  2. #include "local.h"
  3.  
  4. /* Shared timezone information for libc/time functions.  */
  5. static __tzinfo_type tzinfo = {1, 0,
  6.     { {'J', 0, 0, 0, 0, (time_t)0, 0L },
  7.       {'J', 0, 0, 0, 0, (time_t)0, 0L }
  8.     }
  9. };
  10.  
  11. __tzinfo_type *
  12. __gettzinfo (void)
  13. {
  14.   return &tzinfo;
  15. }
  16.