summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/nanosleep.c
blob: 3f5ffbaa3199ed6d957b47c7e4e59402f6cb1cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* vi: set sw=4 ts=4: */
/*
 * nanosleep() for uClibc
 *
 * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
 *
 * GNU Library General Public License (LGPL) version 2 or later.
 */

#include "syscalls.h"
#include <time.h>

#define __NR___libc_nanosleep __NR_nanosleep
_syscall2(int, __libc_nanosleep, const struct timespec *, req,
		  struct timespec *, rem);
hidden_weak_alias(__libc_nanosleep,__nanosleep)
weak_alias(__libc_nanosleep,nanosleep)