mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
56c65fb8d9
These headers aren't installed, so use "" includes instead of <> so we don't search system header paths. This matches the style used elsewhere in the tree for these local headers, and makes it work w/out explicit -I flags (as needed with non-recursive make).
16 lines
290 B
C
16 lines
290 B
C
#include <sys/types.h>
|
|
#include "local.h"
|
|
|
|
/* Shared timezone information for libc/time functions. */
|
|
static __tzinfo_type tzinfo = {1, 0,
|
|
{ {'J', 0, 0, 0, 0, (time_t)0, 0L },
|
|
{'J', 0, 0, 0, 0, (time_t)0, 0L }
|
|
}
|
|
};
|
|
|
|
__tzinfo_type *
|
|
__gettzinfo (void)
|
|
{
|
|
return &tzinfo;
|
|
}
|