diff options
Diffstat (limited to 'gdb/stddef.h')
-rwxr-xr-x | gdb/stddef.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/stddef.h b/gdb/stddef.h index d95a815..c2c396e 100755 --- a/gdb/stddef.h +++ b/gdb/stddef.h @@ -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 */ |