about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2012-05-24 11:37:30 -0700
committerRoland McGrath <roland@hack.frob.com>2012-05-24 13:12:34 -0700
commitd6c33fda03457ca8ca87a562fa2681af16ca4ea5 (patch)
tree322ac1d3d0cb979a0a0c1398333b42e0bc34cee7 /sysdeps/unix/sysv/linux/powerpc
parentb5a2bbe6cceeaa558a5cb174417ab083b2dc549c (diff)
downloadglibc-d6c33fda03457ca8ca87a562fa2681af16ca4ea5.tar.gz
glibc-d6c33fda03457ca8ca87a562fa2681af16ca4ea5.tar.xz
glibc-d6c33fda03457ca8ca87a562fa2681af16ca4ea5.zip
Switch gettimeofday from INTUSE to libc_hidden_proto.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/gettimeofday.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
index b2ef2da973..737613516f 100644
--- a/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
+++ b/sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005 Free Software Foundation, Inc.
+/* Copyright (C) 2005-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
@@ -22,7 +22,6 @@
 #include <time.h>
 #include <hp-timing.h>
 
-#undef __gettimeofday
 #include <bits/libc-vdso.h>
 
 /* Get the current time of day and timezone information,
@@ -36,6 +35,6 @@ __gettimeofday (tv, tz)
 {
   return INLINE_VSYSCALL (gettimeofday, 2, CHECK_1 (tv), CHECK_1 (tz));
 }
-
-INTDEF (__gettimeofday)
+libc_hidden_def (__gettimeofday)
 weak_alias (__gettimeofday, gettimeofday)
+libc_hidden_weak (gettimeofday)