search for: _size_t

Displaying 4 results from an estimated 4 matches for "_size_t".

Did you mean: size_t
2005 Mar 02
1
[PATCH] avoid size_t redefinition
...c-0.202/include/bits32/bitsize/stddef.h --- klibc-0.202-pristine/include/bits32/bitsize/stddef.h 2004-07-07 02:41:04.000000000 +0200 +++ klibc-0.202/include/bits32/bitsize/stddef.h 2005-03-02 20:41:19.000000000 +0100 @@ -5,12 +5,14 @@ #ifndef _BITSIZE_STDDEF_H #define _BITSIZE_STDDEF_H +#ifndef _SIZE_T #define _SIZE_T #if defined(__s390__) || defined(__hppa__) || defined(__cris__) typedef unsigned long size_t; #else typedef unsigned int size_t; #endif +#endif #define _PTRDIFF_T typedef signed int ptrdiff_t;
2012 May 15
5
[PATCH 0/5] resubmitting pending patches
Hi, I?ve gone through the mailing list archives and hereby want to resubmit my pending patches. Most are independent of each other, except the m68k patch which will only be complete if sigsuspend is also fixed. (It can be applied before that, though.) http://www.zytor.com/pipermail/klibc/2012-January/003173.html [PATCH] fix m68k support Resubmitted here as 0005. While there was a question from
2017 Dec 01
2
[Release-testers] 5.0.1-rc2 has been tagged
...ngw defining it twice */ -#if !defined(_PTRDIFF_T_DEFINED) typedef __PTRDIFF_TYPE__ ptrdiff_t; -#define _PTRDIFF_T_DEFINED -#endif - #endif #undef __need_ptrdiff_t #endif /* defined(__need_ptrdiff_t) */ @@ -65,24 +59,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t; #if !__has_feature(modules) #define _SIZE_T #endif - -/* Zig: added to avoid collisions with mingw */ -#if !defined(_SIZE_T_DEFINED_) -#if !defined(_SIZE_T_DEFINED) -#if !defined(_BSD_SIZE_T_DEFINED_) -#if !defined(_SIZE_T_DECLARED) typedef __SIZE_TYPE__ size_t; -#define _SIZE_T_DEFINED_ -#define _SIZE_T_DEFINED -#define _BSD_SIZE_T_DEFINE...
2017 Nov 30
9
5.0.1-rc2 has been tagged
Hi, I've tagged the 5.0.1-rc2 release, go ahead and start testing and report your results. -Tom