mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 03:24:41 +08:00
* stddef.h (size_t): Let either _SIZE_T or _SIZE_T_ guard it.
This commit is contained in:
parent
ff8aef1993
commit
9d62cbd23a
@ -7,7 +7,9 @@ typedef long ptrdiff_t;
|
||||
|
||||
/* Unsigned type of `sizeof' something. */
|
||||
|
||||
#ifndef _SIZE_T /* in case <sys/types.h> has defined it. */
|
||||
/* in case <sys/types.h> has defined it. */
|
||||
/* DECstation uses _SIZE_T_. */
|
||||
#if !defined (_SIZE_T) && !defined (_SIZE_T_)
|
||||
#define _SIZE_T
|
||||
typedef unsigned long size_t;
|
||||
#endif /* _SIZE_T */
|
||||
|
Loading…
Reference in New Issue
Block a user