diff options
author | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-24 18:04:42 +0000 |
---|---|---|
committer | bernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-24 18:04:42 +0000 |
commit | 3b29876427e76f4cf4054a55c5cd6ad403ba61eb (patch) | |
tree | 30cd686465d5c32ae3feab21b35a78240675f666 /libcpp/macro.c | |
parent | 001ad2d459f7dd38d03ff0fe356139595cc6c7b6 (diff) | |
download | gcc-3b29876427e76f4cf4054a55c5cd6ad403ba61eb.tar.gz |
* internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
* directives.c: Use XNEW-family macros from libiberty.
* lex.c: Likewise.
* macro.c: Likewise.
* cpplib.h (cpp_deps_style): Export enum with name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85121 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/macro.c')
-rw-r--r-- | libcpp/macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/macro.c b/libcpp/macro.c index dc58b3180f1..729ea061b8b 100644 --- a/libcpp/macro.c +++ b/libcpp/macro.c @@ -919,7 +919,7 @@ next_context (cpp_reader *pfile) if (result == 0) { - result = xnew (cpp_context); + result = XNEW (cpp_context); result->prev = pfile->context; result->next = 0; pfile->context->next = result; |