aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/sys/linux/sys/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/sys/types.h')
-rw-r--r--newlib/libc/sys/linux/sys/types.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/newlib/libc/sys/linux/sys/types.h b/newlib/libc/sys/linux/sys/types.h
deleted file mode 100644
index 625de3cdf..000000000
--- a/newlib/libc/sys/linux/sys/types.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* libc/sys/linux/sys/types.h - The usual type zoo */
-
-/* Written 2000 by Werner Almesberger */
-
-
-#ifndef _SYS_TYPES_H
-#define _SYS_TYPES_H
-
-/* Newlib has it's own time_t and clock_t definitions in
- * libc/include/sys/types.h. Repeat those here and
- * skip the kernel's definitions. */
-
-#include <machine/types.h>
-
-#ifndef __time_t_defined
-#define _TIME_T
-#define __time_t_defined
-typedef _TIME_T_ time_t;
-#endif
-
-#ifndef __clock_t_defined
-#define _CLOCK_T
-#define __clock_t_defined
-typedef _CLOCK_T_ clock_t;
-#endif
-
-#include <linux/types.h>
-
-#endif