diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-05-24 11:37:30 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-24 13:12:34 -0700 |
commit | d6c33fda03457ca8ca87a562fa2681af16ca4ea5 (patch) | |
tree | 322ac1d3d0cb979a0a0c1398333b42e0bc34cee7 /time | |
parent | b5a2bbe6cceeaa558a5cb174417ab083b2dc549c (diff) | |
download | glibc-d6c33fda03457ca8ca87a562fa2681af16ca4ea5.zip glibc-d6c33fda03457ca8ca87a562fa2681af16ca4ea5.tar.gz glibc-d6c33fda03457ca8ca87a562fa2681af16ca4ea5.tar.bz2 |
Switch gettimeofday from INTUSE to libc_hidden_proto.
Diffstat (limited to 'time')
-rw-r--r-- | time/gettimeofday.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/time/gettimeofday.c b/time/gettimeofday.c index cfe6549..7eb770c 100644 --- a/time/gettimeofday.c +++ b/time/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1991-2012 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 @@ -18,8 +18,6 @@ #include <errno.h> #include <sys/time.h> -#undef __gettimeofday - /* Get the current time of day and timezone information, putting it into *TV and *TZ. If TZ is NULL, *TZ is not filled. Returns 0 on success, -1 on errors. */ @@ -31,8 +29,9 @@ __gettimeofday (tv, tz) __set_errno (ENOSYS); return -1; } -stub_warning (gettimeofday) - -INTDEF(__gettimeofday) +libc_hidden_def (__gettimeofday) weak_alias (__gettimeofday, gettimeofday) +libc_hidden_weak (gettimeofday) + +stub_warning (gettimeofday) #include <stub-tag.h> |