aboutsummaryrefslogtreecommitdiff
path: root/i686/musl/files/cdefs.h
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-29 22:17:03 +0300
committerCem Keylan <cem@ckyln.com>2020-05-29 22:17:03 +0300
commitb4c73dae057e9d688f258eb353810434f7d64365 (patch)
treec3eec207f6a4b27490a239f396bbe74403fc5557 /i686/musl/files/cdefs.h
parent19a1d3f75ead4a3bdcbc14b2872ecb230499108a (diff)
downloadrepository-b4c73dae057e9d688f258eb353810434f7d64365.tar.gz
musl: drop from i686 as it is merged to core
Diffstat (limited to 'i686/musl/files/cdefs.h')
-rwxr-xr-xi686/musl/files/cdefs.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/i686/musl/files/cdefs.h b/i686/musl/files/cdefs.h
deleted file mode 100755
index 209a623c..00000000
--- a/i686/musl/files/cdefs.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#warning usage of non-standard #include <sys/cdefs.h> is deprecated
-
-#undef __P
-#undef __PMT
-
-#define __P(args) args
-#define __PMT(args) args
-
-#define __CONCAT(x,y) x ## y
-#define __STRING(x) #x
-
-#ifdef __cplusplus
-# define __BEGIN_DECLS extern "C" {
-# define __END_DECLS }
-#else
-# define __BEGIN_DECLS
-# define __END_DECLS
-#endif
-
-#if defined(__GNUC__) && !defined(__cplusplus)
-# define __THROW __attribute__ ((__nothrow__))
-# define __NTH(fct) __attribute__ ((__nothrow__)) fct
-#else
-# define __THROW
-# define __NTH(fct) fct
-#endif