diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-20 20:56:24 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-20 20:56:24 +0000 |
commit | 9b6718ff853bca192153704c82576351bd0d1723 (patch) | |
tree | e352d4064d5bec726c848a8eef2ec31595860528 /lib/libc/sys/timer_delete.c | |
parent | 8fbaf2abf7aba067c00788b3a45dd31097a80fdb (diff) |
New POSIX 1003.1b syscalls; from pk@NetBSD
Diffstat (limited to 'lib/libc/sys/timer_delete.c')
-rw-r--r-- | lib/libc/sys/timer_delete.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/libc/sys/timer_delete.c b/lib/libc/sys/timer_delete.c new file mode 100644 index 00000000000..783c41c7342 --- /dev/null +++ b/lib/libc/sys/timer_delete.c @@ -0,0 +1,11 @@ +#include <signal.h> +#include <time.h> +#include <errno.h> + +int +timer_delete(timerid) + timer_t timerid; +{ + errno = ENOSYS; + return -1; +} |