]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - rt/clock_gettime.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / rt / clock_gettime.c
index 5139e8724c0d388a5b795c4c99a72a4e54234700..ea4279239b28b5acb7ebf24e14efb4110cbeef2b 100644 (file)
@@ -1,5 +1,5 @@
 /* Get the current value of a clock.  Stub version.
-   Copyright (C) 1999-2012 Free Software Foundation, Inc.
+   Copyright (C) 1999-2016 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
 
 /* Get current value of CLOCK and store it in TP.  */
 int
-clock_gettime (clockid_t clock_id, struct timespec *tp)
+__clock_gettime (clockid_t clock_id, struct timespec *tp)
 {
   __set_errno (ENOSYS);
   return -1;
 }
-strong_alias (clock_gettime, __clock_gettime)
+weak_alias (__clock_gettime, clock_gettime)
+libc_hidden_def (__clock_gettime)
 stub_warning (clock_gettime)
-#include <stub-tag.h>