Commit 3418a1da by Richard Stallman

Fix prev change; test of _STDDEF_H was backwards.

From-SVN: r2775
parent 637c5064
...@@ -170,8 +170,9 @@ typedef __WCHAR_TYPE__ wchar_t; ...@@ -170,8 +170,9 @@ typedef __WCHAR_TYPE__ wchar_t;
header files do that. */ header files do that. */
#ifdef _ANSI_H_ #ifdef _ANSI_H_
#undef _PTRDIFF_T_ #undef _PTRDIFF_T_
#ifndef _STDDEF_H /* This is a kludge. The case where this happens #ifdef _STDDEF_H /* This is a kludge.
is when obstack.h wants just ptrdiff_t. */ _STDDEF_H is defined when we are using the whole file,
undefined when obstack.h wants just ptrdiff_t. */
#undef _SIZE_T_ #undef _SIZE_T_
#undef _WCHAR_T_ #undef _WCHAR_T_
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment