mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-02 16:01:20 +03:00
* time/tzset.c (__tzname, __daylight, __timezone): Don't check HAVE_WEAK_SYBMOLS for doing weak_alias.
Wed Apr 19 18:40:11 1995 Brendan Kehoe (brendan@zen.org) * time/tzset.c (__tzname, __daylight, __timezone): Don't check HAVE_WEAK_SYBMOLS for doing weak_alias.
This commit is contained in:
14
time/tzset.c
14
time/tzset.c
@@ -36,20 +36,14 @@ extern void EXFUN(__tzfile_default, (char *std AND char *dst AND
|
||||
long int stdoff AND long int dstoff));
|
||||
extern int EXFUN(__tzfile_compute, (time_t, struct tm));
|
||||
|
||||
#ifndef HAVE_WEAK_SYMBOLS
|
||||
#define __tzname tzname
|
||||
#define __daylight daylight
|
||||
#define __timezone timezone
|
||||
#else
|
||||
weak_alias (__tzname, tzname)
|
||||
weak_alias (__daylight, daylight)
|
||||
weak_alias (__timezone, timezone)
|
||||
#endif
|
||||
|
||||
char *__tzname[2] = { (char *) "GMT", (char *) "GMT" };
|
||||
int __daylight = 0;
|
||||
long int __timezone = 0L;
|
||||
|
||||
weak_alias (__tzname, tzname)
|
||||
weak_alias (__daylight, daylight)
|
||||
weak_alias (__timezone, timezone)
|
||||
|
||||
|
||||
#define min(a, b) ((a) < (b) ? (a) : (b))
|
||||
#define max(a, b) ((a) > (b) ? (a) : (b))
|
||||
|
Reference in New Issue
Block a user