summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/setitimer.c
blob: be51cb5c5e3fa7d25c7b4e554b0de8623fd2a574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* vi: set sw=4 ts=4: */
/*
 * setitimer() 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 <sys/time.h>
#define __NR___setitimer __NR_setitimer
attribute_hidden _syscall3(int, __setitimer, __itimer_which_t, which,
		  const struct itimerval *, new, struct itimerval *, old);
strong_alias(__setitimer,setitimer)