diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-05 20:36:21 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-06-05 20:36:21 +0000 |
commit | 36ea3d1d7befa4a34ec786ba5adb470c2811494f (patch) | |
tree | 677328da00677441cae47f62eb795d020ee7021e /gcc/ginclude | |
parent | 865c4b7a7d672b95cbad29363bcbda59c6d93e97 (diff) | |
download | gcc-36ea3d1d7befa4a34ec786ba5adb470c2811494f.tar.gz |
Fix typo: TYPE_ptrdiff_t to _TYPE_ptrdiff_t.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12166 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ginclude')
-rw-r--r-- | gcc/ginclude/stddef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h index 6607aa76286..d113ab03ae5 100644 --- a/gcc/ginclude/stddef.h +++ b/gcc/ginclude/stddef.h @@ -71,7 +71,7 @@ not defined, and so that defining this macro defines _GCC_SIZE_T. If we find that the macros are still defined at this point, we must invoke them so that the type is defined as expected. */ -#if defined (TYPE_ptrdiff_t) && (defined (__need_ptrdiff_t) || defined (_STDDEF_H_)) +#if defined (_TYPE_ptrdiff_t) && (defined (__need_ptrdiff_t) || defined (_STDDEF_H_)) _TYPE_ptrdiff_t; #undef _TYPE_ptrdiff_t #endif |