summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
Diffstat (limited to 'time')
-rw-r--r--time/gmtime.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/time/gmtime.c b/time/gmtime.c
index e5f3a149f0..0f11a4126d 100644
--- a/time/gmtime.c
+++ b/time/gmtime.c
@@ -1,5 +1,5 @@
/* Convert `time_t' to `struct tm' in UTC.
- Copyright (C) 1991, 93, 95, 96, 97, 98 Free Software Foundation, Inc.
+ Copyright (C) 1991, 93, 95, 96, 97, 98, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -28,6 +28,7 @@ __gmtime_r (t, tp)
{
return __tz_convert (t, 0, tp);
}
+libc_hidden_def (__gmtime_r)
weak_alias (__gmtime_r, gmtime_r)