Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/libnosys/times.c')
-rw-r--r--libgloss/libnosys/times.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/libgloss/libnosys/times.c b/libgloss/libnosys/times.c
new file mode 100644
index 000000000..f205e50f5
--- /dev/null
+++ b/libgloss/libnosys/times.c
@@ -0,0 +1,22 @@
+/*
+ * 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)