From 06366724d572ef005f5bc0ddd8ad46794cbfad3b Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 19 Jun 2014 16:08:03 -0700 Subject: [PATCH] Expose tzname, daylight, and timezone. These were accidentally hidden. Bug: 11156955 Change-Id: I380f00bdafa547aea13d4634f3de9ec6f0b50a6f --- libc/include/time.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libc/include/time.h b/libc/include/time.h index a1f5260a4..0587a2d1b 100644 --- a/libc/include/time.h +++ b/libc/include/time.h @@ -36,9 +36,9 @@ __BEGIN_DECLS #define CLOCKS_PER_SEC 1000000 -extern char* tzname[]; -extern int daylight; -extern long int timezone; +extern char* tzname[] __LIBC_ABI_PUBLIC__; +extern int daylight __LIBC_ABI_PUBLIC__; +extern long int timezone __LIBC_ABI_PUBLIC__; struct sigevent;