Blame rt/clock_gettime.c

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