diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2013-06-24 20:36:56 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2013-06-24 22:09:55 -0500 |
commit | 906e64878935b1bda0dc92852af78bdc271918f5 (patch) | |
tree | 96b6090f1b4dd26aa04f3b4dddb151d7adfea76b /system | |
parent | cec818774cdfe21ffc515316aea9034be4cbcbd6 (diff) |
Define timezone.
Diffstat (limited to 'system')
-rw-r--r-- | system/include/libc/time.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/include/libc/time.h b/system/include/libc/time.h index 83993942..2548d6be 100644 --- a/system/include/libc/time.h +++ b/system/include/libc/time.h @@ -126,6 +126,9 @@ extern __IMPORT char *_tzname[2]; #ifndef tzname #define tzname _tzname #endif +#ifndef timezone +#define timezone _timezone +#endif #endif /* !__STRICT_ANSI__ */ #ifdef __cplusplus |