diff options
author | Bernardo Innocenti <bernie@develer.com> | 2004-07-24 20:04:42 +0200 |
---|---|---|
committer | Bernardo Innocenti <bernie@gcc.gnu.org> | 2004-07-24 20:04:42 +0200 |
commit | 72bb2c39ce1c3506d94f7e2e7c2db84ee8535add (patch) | |
tree | 30cd686465d5c32ae3feab21b35a78240675f666 /libcpp/macro.c | |
parent | 5673cd61cee5815e83181a8145e541d091329adf (diff) | |
download | gcc-72bb2c39ce1c3506d94f7e2e7c2db84ee8535add.zip gcc-72bb2c39ce1c3506d94f7e2e7c2db84ee8535add.tar.gz gcc-72bb2c39ce1c3506d94f7e2e7c2db84ee8535add.tar.bz2 |
internal.h (xnew, [...]): Remove.
* 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.
From-SVN: r85121
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 dc58b31..729ea06 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; |