Blame rt/clock_settime.c

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