diff options
Diffstat (limited to 'lib/libc/sys/timer_getoverrun.c')
-rw-r--r-- | lib/libc/sys/timer_getoverrun.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/libc/sys/timer_getoverrun.c b/lib/libc/sys/timer_getoverrun.c new file mode 100644 index 00000000000..37e35335f93 --- /dev/null +++ b/lib/libc/sys/timer_getoverrun.c @@ -0,0 +1,11 @@ +#include <signal.h> +#include <time.h> +#include <errno.h> + +int +timer_getoverrun(timerid) + timer_t timerid; +{ + errno = ENOSYS; + return -1; +} |