Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4349 Serge 1
#include 
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
}