Blame rt/clock_gettime.c

Packit Bot 0c2104
/* Get the current value of a clock.  Stub version.
Packit Bot 0c2104
   Copyright (C) 1999-2018 Free Software Foundation, Inc.
Packit Service 4449c3
   This file is part of the GNU C Library.
Packit Service 4449c3
Packit Service 4449c3
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 4449c3
   modify it under the terms of the GNU Lesser General Public
Packit Service 4449c3
   License as published by the Free Software Foundation; either
Packit Service 4449c3
   version 2.1 of the License, or (at your option) any later version.
Packit Service 4449c3
Packit Service 4449c3
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 4449c3
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4449c3
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4449c3
   Lesser General Public License for more details.
Packit Service 4449c3
Packit Service 4449c3
   You should have received a copy of the GNU Lesser General Public
Packit Service 4449c3
   License along with the GNU C Library; if not, see
Packit Service 4449c3
   <http://www.gnu.org/licenses/>.  */
Packit Service 4449c3
Packit Bot 0c2104
#include <errno.h>
Packit Bot 0c2104
#include <time.h>
Packit Service 4449c3
Packit Bot 0c2104
/* Get current value of CLOCK and store it in TP.  */
Packit Bot 0c2104
int
Packit Bot 0c2104
__clock_gettime (clockid_t clock_id, struct timespec *tp)
Packit Service 4449c3
{
Packit Bot 0c2104
  __set_errno (ENOSYS);
Packit Bot 0c2104
  return -1;
Packit Service 4449c3
}
Packit Bot 0c2104
weak_alias (__clock_gettime, clock_gettime)
Packit Bot 0c2104
libc_hidden_def (__clock_gettime)
Packit Bot 0c2104
stub_warning (clock_gettime)