Unlike alarm(), ualarm() has actually two arguments.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8785 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-09-01 23:45:54 +00:00
parent d21749db83
commit 336ffbcd04
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#ifndef _UNISTD_H_
#define _UNISTD_H_
/*
** Distributed under the terms of the OpenBeOS License.
** Distributed under the terms of the Haiku License.
*/
#include <null.h>
@ -133,7 +133,7 @@ extern int tcsetpgrp(int fd, pid_t pgrpid);
extern void *sbrk(long incr);
extern uint alarm(unsigned int seconds);
extern uint ualarm(unsigned int microSeconds);
extern uint ualarm(unsigned int microSeconds, unsigned int interval);
extern uint sleep(unsigned int seconds);
extern int usleep(unsigned int microSeconds);
extern clock_t clock(void);