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 'newlib/libc/sys/rtems/sys/times.h')
-rw-r--r--newlib/libc/sys/rtems/sys/times.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/newlib/libc/sys/rtems/sys/times.h b/newlib/libc/sys/rtems/sys/times.h
deleted file mode 100644
index 3b8599d30..000000000
--- a/newlib/libc/sys/rtems/sys/times.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * $Id$
- */
-
-#ifndef __POSIX_SYS_TIMES_h
-#define __POSIX_SYS_TIMES_h
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <sys/types.h>
-
-/*
- * 4.5.2 Get Process Times, P1003.1b-1993, p. 92
- */
-
-struct tms {
- clock_t tms_utime; /* User CPU time */
- clock_t tms_stime; /* System CPU time */
- clock_t tms_cutime; /* User CPU time of terminated child processes */
- clock_t tms_cstime; /* System CPU time of terminated child processes */
-};
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-/* end of include file */
-