Commit 9bc6f25d by Maya Rashish Committed by Gerald Pfeifer

stddef.h: Simplify conditions around avoiding re-definition of __size_t.

	* ginclude/stddef.h: Simplify conditions around avoiding
	re-definition of __size_t.

From-SVN: r261998
parent 1a6d1d24
2018-06-24 Maya Rashish <coypu@sdf.org>
* ginclude/stddef.h: Simplify conditions around avoiding
re-definition of __size_t.
2018-06-22 Jan Hubicka <hubicka@ucw.cz> 2018-06-22 Jan Hubicka <hubicka@ucw.cz>
* lto-streamer-out.c (tree_is_indexable): Make LABEL_DECL nonindexable * lto-streamer-out.c (tree_is_indexable): Make LABEL_DECL nonindexable
......
...@@ -196,10 +196,9 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t; ...@@ -196,10 +196,9 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
#define _SIZET_ #define _SIZET_
#if (defined (__FreeBSD__) && (__FreeBSD__ >= 5)) \ #if (defined (__FreeBSD__) && (__FreeBSD__ >= 5)) \
|| defined(__DragonFly__) \ || defined(__DragonFly__) \
|| defined(__FreeBSD_kernel__) || defined(__FreeBSD_kernel__) \
/* __size_t is a typedef on FreeBSD 5, must not trash it. */ || defined(__VMS__)
#elif defined (__VMS__) /* __size_t is a typedef, must not trash it. */
/* __size_t is also a typedef on VMS. */
#else #else
#define __size_t #define __size_t
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment