toaruos/libc/unistd/alarm.c
2018-10-12 12:45:48 +09:00

9 lines
174 B
C

#include <stdio.h>
extern char * _argv_0;
unsigned int alarm(unsigned int seconds) {
fprintf(stderr, "%s: alarm requested (%d seconds)\n", _argv_0, seconds);
return 0;
}