* stddef.h (size_t): Let either _SIZE_T or _SIZE_T_ guard it.

This commit is contained in:
Jim Kingdon 1991-04-20 03:25:09 +00:00
parent ff8aef1993
commit 9d62cbd23a
1 changed files with 3 additions and 1 deletions

View File

@ -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 */