aboutsummaryrefslogtreecommitdiff
path: root/libgloss/libnosys/times.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/libnosys/times.c')
-rw-r--r--libgloss/libnosys/times.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/libgloss/libnosys/times.c b/libgloss/libnosys/times.c
deleted file mode 100644
index f205e50f5..000000000
--- a/libgloss/libnosys/times.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Stub version of times.
- */
-
-#include "config.h"
-#include <_ansi.h>
-#include <_syslist.h>
-#include <sys/times.h>
-#include <errno.h>
-#undef errno
-extern int errno;
-#include "warning.h"
-
-clock_t
-_DEFUN (_times, (buf),
- struct tms *buf)
-{
- errno = ENOSYS;
- return -1;
-}
-
-stub_warning(_times)