summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/sys/cdefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/dietlibc/include/sys/cdefs.h')
-rw-r--r--mdk-stage1/dietlibc/include/sys/cdefs.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/include/sys/cdefs.h b/mdk-stage1/dietlibc/include/sys/cdefs.h
new file mode 100644
index 000000000..9f256f59f
--- /dev/null
+++ b/mdk-stage1/dietlibc/include/sys/cdefs.h
@@ -0,0 +1,24 @@
+#ifndef _SYS_CDEFS_H
+#define _SYS_CDEFS_H
+
+#ifndef __cplusplus
+#define throw ()
+#define __THROW
+#else
+#define __THROW throw ()
+#endif
+
+#ifndef __GNUC__
+#define __attribute__(xyz)
+#endif
+
+#define __pure__
+#ifdef __GNUC__
+#if (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 96))
+#undef __pure__
+#define __pure__ __attribute__ ((__pure__))
+#endif
+
+#endif
+
+#endif