/*1* Copyright (c) 2017 Eric van Gyzen2* Copyright (c) 2014 The FreeBSD Foundation.3*4* Portions of this software were developed by Konstantin Belousov5* under sponsorship from the FreeBSD Foundation.6*7* Redistribution and use in source and binary forms, with or without8* modification, are permitted provided that the following conditions9* are met:10* 1. Redistributions of source code must retain the above copyright11* notice(s), this list of conditions and the following disclaimer as12* the first lines of this file unmodified other than the possible13* addition of one or more copyright notices.14* 2. Redistributions in binary form must reproduce the above copyright15* notice(s), this list of conditions and the following disclaimer in16* the documentation and/or other materials provided with the17* distribution.18*19* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY20* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE21* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR22* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE23* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR24* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF25* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR26* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,27* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE28* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,29* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.30*/3132#include <sys/types.h>33#include <time.h>34#include "libc_private.h"3536#pragma weak clock_nanosleep37int38clock_nanosleep(clockid_t clock_id, int flags, const struct timespec *rqtp,39struct timespec *rmtp)40{41return (INTERPOS_SYS(clock_nanosleep, clock_id, flags, rqtp, rmtp));42}434445