diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-16 18:29:52 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-16 18:29:52 +0000 |
commit | 15868f9c3d22fb51b38d7aafd88d95fb2193e734 (patch) | |
tree | fd940f5c633ec4a2d917b91654927c86d28c5f37 /libc/misc/time | |
parent | 4a15cc847eef004276ddaaae4dbb70dd6fb692e1 (diff) |
s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now see what libpthread will do ...
Diffstat (limited to 'libc/misc/time')
-rw-r--r-- | libc/misc/time/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c index 24eca9e43..ea28e1a4f 100644 --- a/libc/misc/time/time.c +++ b/libc/misc/time/time.c @@ -756,7 +756,7 @@ time_t mktime(struct tm *timeptr) /* Another name for `mktime'. */ /* time_t timelocal(struct tm *tp) */ -weak_alias(mktime,timelocal) +strong_alias(mktime,timelocal) #endif /**********************************************************************/ |