Blame rt/clock_settime.c

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