diff options
Diffstat (limited to 'src/unistd/ualarm.c')
-rw-r--r-- | src/unistd/ualarm.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/ualarm.c b/src/unistd/ualarm.c new file mode 100644 index 00000000..be853035 --- /dev/null +++ b/src/unistd/ualarm.c @@ -0,0 +1,8 @@ +#include <unistd.h> +#include "syscall.h" + +/* FIXME: ?? */ +useconds_t ualarm(useconds_t useconds, useconds_t interval) +{ + return -1; +} |