]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libc_backends/lib/l4re/lib/usleep.c
update
[l4.git] / l4 / pkg / libc_backends / lib / l4re / lib / usleep.c
1 /*
2  * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
3  *     economic rights: Technische Universität Dresden (Germany)
4  * This file is part of TUD:OS and distributed under the terms of the
5  * GNU Lesser General Public License 2.1.
6  * Please see the COPYING-LGPL-2.1 file for details.
7  */
8 #include <l4/util/util.h>
9 #include <unistd.h>
10
11 int usleep(useconds_t usec)
12 {
13   l4_usleep(usec);
14   return 0;
15 }
16